diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-11-27 11:01:13 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-11-27 11:01:13 +0200 |
commit | 61699217beb4779ff23eea893762c5cf14053763 (patch) | |
tree | ed2acea1b3245c53ea8f3aab9b18401c229c3879 /libbuild2 | |
parent | 6aa0bbaffe64db7378c2bce59904e5f241c382f7 (diff) |
Fix minor incompatibility with C++14
Diffstat (limited to 'libbuild2')
-rw-r--r-- | libbuild2/cc/compile-rule.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/cc/compile-rule.cxx b/libbuild2/cc/compile-rule.cxx index d1a45c3..0755eef 100644 --- a/libbuild2/cc/compile-rule.cxx +++ b/libbuild2/cc/compile-rule.cxx @@ -6138,7 +6138,7 @@ namespace build2 (dir_path (build_install_data) /= "libbuild2") /= "cc", dir_path (), "std", - "cppm", + string ("cppm"), // For C++14 during bootstrap. target_decl::implied, trace).first); |