From 0a80f93ea4a6cfdf7ce879ff15c076b38d536461 Mon Sep 17 00:00:00 2001 From: Sean Cannella Date: Wed, 26 Jun 2013 14:51:18 -0700 Subject: [PATCH] __assert_util is not defined on macosx - use the HHVM assert_util implementation on OSX --- hphp/util/assertions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hphp/util/assertions.h b/hphp/util/assertions.h index bafc5f589..a6210ca9e 100644 --- a/hphp/util/assertions.h +++ b/hphp/util/assertions.h @@ -86,7 +86,7 @@ inline void assert_fail(const char* e, const char* file, unsigned int line, const char* func) { -#ifndef NDEBUG +#if !defined(NDEBUG) && !defined(__APPLE__) __assert_fail(e, file, line, func); #else extern void impl_assert_fail(const char*,