summaryrefslogtreecommitdiff
path: root/common/session/cache/test.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2023-12-13 21:57:53 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-23 21:20:44 +0300
commitfc3fb39c90ab7fe5fccbe3f3bc0eb2645157bb96 (patch)
tree6c8c1bfb5fe89f7378b92ac066b4ca8ecfd25228 /common/session/cache/test.hxx
parent02367faedb16b6186e8852de47e5b749dc48c2df (diff)
Switch to build2
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