diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-09 06:49:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-09 06:49:23 +0200 |
commit | 09e0cf71552d7f6e4f864b997db9913b9e9ae187 (patch) | |
tree | 775531e07be95d79201b3c7db11c399eca4c83c3 /libbuild2 | |
parent | 6084692e2bd4e0053cac7dc3f569738651ee9042 (diff) |
Work around issue with undefined symbol to constexpr const
Note that this only manifests itself when compiling in the C++14 mode (e.g.,
during bootstrap or with an older compiler like GCC 4.9).
Diffstat (limited to 'libbuild2')
-rw-r--r-- | libbuild2/bin/init.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/bin/init.cxx b/libbuild2/bin/init.cxx index 7f7fd02..07888f6 100644 --- a/libbuild2/bin/init.cxx +++ b/libbuild2/bin/init.cxx @@ -395,7 +395,7 @@ namespace build2 s.find ('*') == string::npos)) { fail << "missing '*' or trailing '" - << path::traits_type::directory_separator + << char (path::traits_type::directory_separator) << "' in binutils pattern '" << s << "'"; } |