summaryrefslogtreecommitdiff
path: root/odb/option-types.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-07-09 13:06:18 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-07-09 13:06:18 +0200
commitac943fcad42ddf12d522d0dc280a60e9b2b2cbb1 (patch)
tree77a7614aa1cb9db5a81968c3a151af4e0330b49f /odb/option-types.hxx
parentbf0b1014b260f04a3446a4a8ccd3817083777787 (diff)
Add c++17 mode (--std c++17), also translate to c++NN rather than gnu++NN
Diffstat (limited to 'odb/option-types.hxx')
-rw-r--r--odb/option-types.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/odb/option-types.hxx b/odb/option-types.hxx
index 8ff85a9..dc8cbe2 100644
--- a/odb/option-types.hxx
+++ b/odb/option-types.hxx
@@ -22,7 +22,8 @@ struct cxx_version
{
cxx98,
cxx11,
- cxx14
+ cxx14,
+ cxx17
};
cxx_version (value v = value (0)) : v_ (v) {}