aboutsummaryrefslogtreecommitdiff
path: root/odb/validator.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-04-09 10:04:37 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-04-10 18:46:45 +0200
commit458779f49a789e403cf108ac04b6fa035cb06810 (patch)
tree6105792df940066ac6cc4b782e505a2a0fbe2aaa /odb/validator.cxx
parent5ebd62ec778bc8c9540e2379e764ac52c060adfc (diff)
Enable --generate-schema-only option for separate schema format
Diffstat (limited to 'odb/validator.cxx')
-rw-r--r--odb/validator.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/odb/validator.cxx b/odb/validator.cxx
index c6b9c86..f33962b 100644
--- a/odb/validator.cxx
+++ b/odb/validator.cxx
@@ -967,11 +967,10 @@ validate (options const& ops,
// Validate options.
//
if (ops.generate_schema_only () &&
- (ops.schema_format ()[db].size () != 1 ||
- *ops.schema_format ()[db].begin () != schema_format::sql))
+ ops.schema_format ()[db].count (schema_format::embedded))
{
cerr << "error: --generate-schema-only is only valid when generating " <<
- "schema as a standalone SQL file" << endl;
+ "schema as a standalone SQL or separate C++ file" << endl;
valid = false;
}