From e8401e39fafe951b42bd8e6255c3a98be7441029 Mon Sep 17 00:00:00 2001 From: Clark Barrett Date: Thu, 28 Apr 2016 17:39:35 -0400 Subject: [PATCH] Workaround for a problem in clang --- src/theory/type_enumerator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theory/type_enumerator.h b/src/theory/type_enumerator.h index d1318aaa8..bcd7e695f 100644 --- a/src/theory/type_enumerator.h +++ b/src/theory/type_enumerator.h @@ -115,7 +115,7 @@ public: // On Mac clang, there appears to be a code generation bug in an exception // block here. For now, there doesn't appear a good workaround; just disable // assertions on that setup. -#if defined(CVC4_ASSERTIONS) && !(defined(__APPLE__) && defined(__clang__)) +#if defined(CVC4_ASSERTIONS) && !(defined(__clang__)) if(d_te->isFinished()) { try { **d_te; -- 2.30.2