aboutsummaryrefslogtreecommitdiff
path: root/odb/details
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-10-03 08:11:17 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-10-03 08:11:17 +0200
commitd7370772a48b1bee07473c8ba080306c18e60933 (patch)
treebb1157f3d12f250bd835c9e26eba1fd1479891ab /odb/details
parent78a3f9d2223a7c6477036c8bd6fb8a6f188f344f (diff)
Add support for compile-time detection of unnecessary data migration functions
Diffstat (limited to 'odb/details')
-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