aboutsummaryrefslogtreecommitdiff
path: root/odb/option-functions.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/option-functions.cxx')
-rw-r--r--odb/option-functions.cxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/odb/option-functions.cxx b/odb/option-functions.cxx
index b0b2523..075e8ab 100644
--- a/odb/option-functions.cxx
+++ b/odb/option-functions.cxx
@@ -71,12 +71,9 @@ process_options (options& o)
}
else
{
- o.odb_file_suffix ().insert (
- make_pair (db, string ("-odb-") + db.string ()));
- o.sql_file_suffix ().insert (
- make_pair (db, string ("-") + db.string ()));
- o.schema_file_suffix ().insert (
- make_pair (db, string ("-schema-") + db.string ()));
+ o.odb_file_suffix ().insert (make_pair (db, "-odb-" + db.string ()));
+ o.sql_file_suffix ().insert (make_pair (db, "-" + db.string ()));
+ o.schema_file_suffix ().insert (make_pair (db, "-schema-" + db.string ()));
}
// Set default --default-database value.