summaryrefslogtreecommitdiff
path: root/odb/details/meta/remove-const.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/details/meta/remove-const.hxx')
-rw-r--r--odb/details/meta/remove-const.hxx32
1 files changed, 0 insertions, 32 deletions
diff --git a/odb/details/meta/remove-const.hxx b/odb/details/meta/remove-const.hxx
deleted file mode 100644
index 4a92ed3..0000000
--- a/odb/details/meta/remove-const.hxx
+++ /dev/null
@@ -1,32 +0,0 @@
-// file : odb/details/meta/remove-const.hxx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef ODB_DETAILS_META_REMOVE_CONST_HXX
-#define ODB_DETAILS_META_REMOVE_CONST_HXX
-
-#include <odb/pre.hxx>
-
-namespace odb
-{
- namespace details
- {
- namespace meta
- {
- template <typename X>
- struct remove_const
- {
- typedef X result;
- };
-
- template <typename X>
- struct remove_const<const X>
- {
- typedef X result;
- };
- }
- }
-}
-
-#include <odb/post.hxx>
-
-#endif // ODB_DETAILS_META_REMOVE_CONST_HXX