summaryrefslogtreecommitdiff
path: root/common/inverse/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'common/inverse/test.hxx')
-rw-r--r--common/inverse/test.hxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/common/inverse/test.hxx b/common/inverse/test.hxx
index 35fd813..a7b8678 100644
--- a/common/inverse/test.hxx
+++ b/common/inverse/test.hxx
@@ -4,8 +4,6 @@
#ifndef TEST_HXX
#define TEST_HXX
-#include <common/config.hxx> // HAVE_CXX11, HAVE_TR1_MEMORY
-
#include <set>
#include <vector>
#include <string>
@@ -13,10 +11,6 @@
#include <odb/core.hxx>
-#if !defined(HAVE_CXX11) && defined(HAVE_TR1_MEMORY)
-# include <odb/tr1/memory.hxx>
-#endif
-
// Test raw pointers.
//
#pragma db namespace table("t1_")
@@ -127,18 +121,11 @@ namespace test1
// Test shared_ptr/weak_ptr.
//
-#if defined(HAVE_CXX11) || defined(HAVE_TR1_MEMORY)
-
#pragma db namespace table("t2_")
namespace test2
{
-#ifdef HAVE_CXX11
using std::shared_ptr;
using std::weak_ptr;
-#else
- using std::tr1::shared_ptr;
- using std::tr1::weak_ptr;
-#endif
struct obj1;
struct obj2;
@@ -229,7 +216,6 @@ namespace test2
obj1_wptr_vec o1;
};
}
-#endif
// Test inverse based on points_to.
//