diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-01 19:30:43 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-01 19:30:43 +0300 |
commit | d5fe771fe957b15ba1b5f8ae96ceb46708444267 (patch) | |
tree | 92db4fcd3cc1444eab48e0ebde4041d78090a481 | |
parent | 0d1dcfe61f15b43c6640330662b47b5f160bd47d (diff) |
Use cxx.std=latest
-rw-r--r-- | build/root.build | 2 | ||||
-rw-r--r-- | examples/build/root.build | 2 | ||||
-rw-r--r-- | tests/build/root.build | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/build/root.build b/build/root.build index 5293559..561e38a 100644 --- a/build/root.build +++ b/build/root.build @@ -2,7 +2,7 @@ # copyright : Copyright (c) 2013-2019 Code Synthesis Tools CC # license : MIT; see accompanying LICENSE file -cxx.std = 11 +cxx.std = latest using cxx diff --git a/examples/build/root.build b/examples/build/root.build index 3e30169..8f1757f 100644 --- a/examples/build/root.build +++ b/examples/build/root.build @@ -2,7 +2,7 @@ # copyright : Copyright (c) 2013-2019 Code Synthesis Tools CC # license : MIT; see accompanying LICENSE file -cxx.std = 11 +cxx.std = latest using cxx diff --git a/tests/build/root.build b/tests/build/root.build index 38d2a96..de22341 100644 --- a/tests/build/root.build +++ b/tests/build/root.build @@ -2,7 +2,7 @@ # copyright : Copyright (c) 2013-2019 Code Synthesis Tools CC # license : MIT; see accompanying LICENSE file -cxx.std = 11 +cxx.std = latest using cxx |