summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorClark Barrett <barrett@cs.nyu.edu>2016-04-28 17:39:35 -0400
committerClark Barrett <barrett@cs.nyu.edu>2016-04-28 17:39:35 -0400
commite8401e39fafe951b42bd8e6255c3a98be7441029 (patch)
tree59c483b8b0e702a20a2fae0a941758e84260f782 /src
parentb9332c2897a354cb2f7275a67cb949770b558d25 (diff)
Workaround for a problem in clang
Diffstat (limited to 'src')
-rw-r--r--src/theory/type_enumerator.h2
1 files changed, 1 insertions, 1 deletions
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;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback