aboutsummaryrefslogtreecommitdiff
path: root/odb/details/meta/remove-v.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/details/meta/remove-v.hxx')
-rw-r--r--odb/details/meta/remove-v.hxx34
1 files changed, 0 insertions, 34 deletions
diff --git a/odb/details/meta/remove-v.hxx b/odb/details/meta/remove-v.hxx
deleted file mode 100644
index c4133da..0000000
--- a/odb/details/meta/remove-v.hxx
+++ /dev/null
@@ -1,34 +0,0 @@
-// file : odb/details/meta/remove-v.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef ODB_DETAILS_META_REMOVE_V_HXX
-#define ODB_DETAILS_META_REMOVE_V_HXX
-
-#include <odb/pre.hxx>
-
-namespace odb
-{
- namespace details
- {
- namespace meta
- {
- template <typename X>
- struct remove_v
- {
- typedef X r;
- };
-
- template <typename X>
- struct remove_v<X volatile>
- {
- typedef X r;
- };
- }
- }
-}
-
-#include <odb/post.hxx>
-
-#endif // ODB_DETAILS_META_REMOVE_V_HXX