aboutsummaryrefslogtreecommitdiff
path: root/odb/meta/class-p.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-08-18 20:02:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-08-18 20:02:11 +0200
commit2636e266dc7a048e52b40b668c460c2793e897c4 (patch)
tree9717f573d9733b8cfa09a15ee44ed7768c427d7b /odb/meta/class-p.hxx
parentdce5d0658e67ced4d5fa64f98f598b86917927a7 (diff)
Move shared_ptr to the details namespace
Diffstat (limited to 'odb/meta/class-p.hxx')
-rw-r--r--odb/meta/class-p.hxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/odb/meta/class-p.hxx b/odb/meta/class-p.hxx
deleted file mode 100644
index e3d15c9..0000000
--- a/odb/meta/class-p.hxx
+++ /dev/null
@@ -1,28 +0,0 @@
-// file : odb/meta/class-p.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef ODB_META_CLASS_HXX
-#define ODB_META_CLASS_HXX
-
-#include <odb/meta/answer.hxx>
-
-namespace odb
-{
- namespace meta
- {
- // g++ cannot have these inside class_p.
- //
- template <typename Y> no class_p_test (...);
- template <typename Y> yes class_p_test (void (Y::*) ());
-
- template <typename X>
- struct class_p
- {
- static bool const r = sizeof (class_p_test<X> (0)) == sizeof (yes);
- };
- }
-}
-
-#endif // ODB_META_CLASS_HXX