diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-12-13 11:38:49 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-12-13 11:38:49 +0200 |
commit | 3fd22b7b86ebad8fbd4b66da3d63e6d9c1ca829c (patch) | |
tree | ebd661aba341b0d478cb3e359665ccb4bba6a81a /common/relationship/test.hxx | |
parent | b0badbfd0fdbbadef588a2b518cbfb49f34bf9fd (diff) |
Detect TR1 <memory> availability
Also use the wrapper header from libodb.
Diffstat (limited to 'common/relationship/test.hxx')
-rw-r--r-- | common/relationship/test.hxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/common/relationship/test.hxx b/common/relationship/test.hxx index cafdc99..486c417 100644 --- a/common/relationship/test.hxx +++ b/common/relationship/test.hxx @@ -6,15 +6,20 @@ #ifndef TEST_HXX #define TEST_HXX +#include <common/config.hxx> // HAVE_TR1_MEMORY + #include <set> #include <map> #include <vector> #include <string> #include <memory> -#include "tr1-memory.hxx" #include <odb/core.hxx> +#ifdef HAVE_TR1_MEMORY +# include <odb/tr1/memory.hxx> +#endif + // Raw pointer. // #pragma db object pointer(obj1*) |