// file : odb/details/meta/static-assert.hxx // copyright : Copyright (c) 2009-2019 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