From d7370772a48b1bee07473c8ba080306c18e60933 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 3 Oct 2013 08:11:17 +0200 Subject: Add support for compile-time detection of unnecessary data migration functions --- odb/details/meta/static-assert.hxx | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 odb/details/meta/static-assert.hxx (limited to 'odb/details') 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 + +#include // ODB_CXX11 + +#ifndef ODB_CXX11 + +namespace odb +{ + namespace details + { + namespace meta + { + template + struct static_assert_test; + + template <> + struct static_assert_test {}; + } + } +} + +#endif + +#include + +#endif // ODB_DETAILS_META_STATIC_ASSERT_HXX -- cgit v1.1