aboutsummaryrefslogtreecommitdiff
path: root/odb/details/meta/static-assert.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/details/meta/static-assert.hxx')
-rw-r--r--odb/details/meta/static-assert.hxx33
1 files changed, 33 insertions, 0 deletions
diff --git a/odb/details/meta/static-assert.hxx b/odb/details/meta/static-assert.hxx
new file mode 100644
index 0000000..6bb84f2
--- /dev/null
+++ b/odb/details/meta/static-assert.hxx
@@ -0,0 +1,33 @@
+// file : odb/details/meta/static-assert.hxx
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_DETAILS_META_STATIC_ASSERT_HXX
+#define ODB_DETAILS_META_STATIC_ASSERT_HXX
+
+#include <odb/pre.hxx>
+
+#include <odb/details/config.hxx> // ODB_CXX11
+
+#ifndef ODB_CXX11
+
+namespace odb
+{
+ namespace details
+ {
+ namespace meta
+ {
+ template <bool>
+ struct static_assert_test;
+
+ template <>
+ struct static_assert_test<true> {};
+ }
+ }
+}
+
+#endif
+
+#include <odb/post.hxx>
+
+#endif // ODB_DETAILS_META_STATIC_ASSERT_HXX