aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-05-20 09:25:47 -0500
committerErik Schnetter <schnetter@gmail.com>2013-05-20 09:25:47 -0500
commitc45a84b1397d49b0ce80af073a5815bf6bafc6b7 (patch)
tree1b95addc1f3651d3a28e798d6ad1558c12837708
parent276ed1e4b33f1ecf16e0881607b1e6439a19b7cd (diff)
CarpetLib: Don't define static_assert
This should now be done by the flesh, using autoconf.
-rw-r--r--Carpet/CarpetLib/src/defs.hh5
1 files changed, 0 insertions, 5 deletions
diff --git a/Carpet/CarpetLib/src/defs.hh b/Carpet/CarpetLib/src/defs.hh
index 345f9ee60..ff89ad668 100644
--- a/Carpet/CarpetLib/src/defs.hh
+++ b/Carpet/CarpetLib/src/defs.hh
@@ -49,11 +49,6 @@ char const * const eol = "\n";
-// A compile time pseudo assert statement
-#define static_assert(_x, _msg) do { typedef int ai[(_x) ? 1 : -1]; } while(0)
-
-
-
// Check a return value
#define check(_expr) do { bool const _val = (_expr); assert(_val); } while(0)