aboutsummaryrefslogtreecommitdiff
path: root/inheritance
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-09-06 08:51:38 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-09-06 08:51:38 +0200
commitdb918b9b3dbe6df53d046e3561c07133cfc825e7 (patch)
tree6daf709fdfe4ade49349f89514356ff95dab8ec6 /inheritance
parent0e272ec96fbcce93ec3be49eca753a7cd0079893 (diff)
Issue error if DATABASE_* macros is not defined
Diffstat (limited to 'inheritance')
-rw-r--r--inheritance/polymorphism/database.hxx2
-rw-r--r--inheritance/reuse/database.hxx2
2 files changed, 4 insertions, 0 deletions
diff --git a/inheritance/polymorphism/database.hxx b/inheritance/polymorphism/database.hxx
index 403b170..4c65d2d 100644
--- a/inheritance/polymorphism/database.hxx
+++ b/inheritance/polymorphism/database.hxx
@@ -28,6 +28,8 @@
# include <odb/oracle/database.hxx>
#elif defined(DATABASE_MSSQL)
# include <odb/mssql/database.hxx>
+#else
+# error unknown database; did you forget to define the DATABASE_* macros?
#endif
inline std::auto_ptr<odb::database>
diff --git a/inheritance/reuse/database.hxx b/inheritance/reuse/database.hxx
index 605c07f..6fd1bda 100644
--- a/inheritance/reuse/database.hxx
+++ b/inheritance/reuse/database.hxx
@@ -28,6 +28,8 @@
# include <odb/oracle/database.hxx>
#elif defined(DATABASE_MSSQL)
# include <odb/mssql/database.hxx>
+#else
+# error unknown database; did you forget to define the DATABASE_* macros?
#endif
inline std::auto_ptr<odb::database>