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