diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-08 14:35:28 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-08 14:35:28 +0200 |
commit | 903869c797d4365678c928111f818a783fe2bd78 (patch) | |
tree | 40d4fb95bdcd130aaea40e87c06c37469c67ec5a /common/bulk | |
parent | ab8d0180ba3dcaa1e143a3cbad7be0ce6a846493 (diff) |
Use ODB_DATABASE_* macros in headers compiled by ODB
On Windows DATABASE_* macros are defined by the project, not via a
header.
Diffstat (limited to 'common/bulk')
-rw-r--r-- | common/bulk/test.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/bulk/test.hxx b/common/bulk/test.hxx index 1e7ce52..e390e52 100644 --- a/common/bulk/test.hxx +++ b/common/bulk/test.hxx @@ -5,7 +5,7 @@ #ifndef TEST_HXX #define TEST_HXX -#include <common/config.hxx> // HAVE_CXX11, DATABASE_* +#include <common/config.hxx> // HAVE_CXX11 #include <string> #include <memory> // std::auto_ptr, std::unique_ptr @@ -213,7 +213,7 @@ namespace test7 // Test SQL Server optimistic concurrency with ROWVERSION. // -#ifdef DATABASE_MSSQL +#ifdef ODB_DATABASE_MSSQL #pragma db namespace table("t8_") namespace test8 { |