aboutsummaryrefslogtreecommitdiff
path: root/common/session/cache/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'common/session/cache/test.hxx')
-rw-r--r--common/session/cache/test.hxx15
1 files changed, 0 insertions, 15 deletions
diff --git a/common/session/cache/test.hxx b/common/session/cache/test.hxx
index 3ee2fbf..d2b1b2b 100644
--- a/common/session/cache/test.hxx
+++ b/common/session/cache/test.hxx
@@ -4,31 +4,18 @@
#ifndef TEST_HXX
#define TEST_HXX
-#include <common/config.hxx> // HAVE_CXX11, HAVE_TR1_MEMORY
-
#include <memory>
#include <vector>
#include <odb/core.hxx>
-#if !defined(HAVE_CXX11) && defined(HAVE_TR1_MEMORY)
-# include <odb/tr1/memory.hxx>
-#endif
-
// Test the session_required exception.
//
-#if defined(HAVE_CXX11) || defined(HAVE_TR1_MEMORY)
-
#pragma db namespace table("t1_")
namespace test1
{
-#ifdef HAVE_CXX11
using std::shared_ptr;
using std::weak_ptr;
-#else
- using std::tr1::shared_ptr;
- using std::tr1::weak_ptr;
-#endif
#pragma db namespace(test1) pointer(shared_ptr)
@@ -60,6 +47,4 @@ namespace test1
};
}
-#endif // HAVE_CXX11 || HAVE_TR1_MEMORY
-
#endif // TEST_HXX