aboutsummaryrefslogtreecommitdiff
path: root/odb/option-types.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/option-types.cxx')
-rw-r--r--odb/option-types.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/odb/option-types.cxx b/odb/option-types.cxx
index e003381..d7c2621 100644
--- a/odb/option-types.cxx
+++ b/odb/option-types.cxx
@@ -18,6 +18,7 @@ static const char* cxx_version_[] =
{
"c++98",
"c++11"
+ "c++14"
};
string cxx_version::
@@ -38,6 +39,8 @@ operator>> (istream& is, cxx_version& v)
v = cxx_version::cxx98;
else if (s == "c++11")
v = cxx_version::cxx11;
+ else if (s == "c++14")
+ v = cxx_version::cxx14;
else
is.setstate (istream::failbit);
}