From 44d2e9c65754769c6a275b715b5b9fb3bdeb5bad Mon Sep 17 00:00:00 2001 From: Taiyeba Date: Tue, 21 May 2019 21:22:21 +0200 Subject: [PATCH] Setting cppstd is deprecated to compiler.cppstd In Conan version 1.15.0 the setting `cppstd` has been deprecated to `compiler.cppstd`. ``` UserWarning: Setting 'cppstd' is deprecated in favor of 'compiler.cppstd' warnings.warn("Setting 'cppstd' is deprecated in favor of 'compiler.cppstd'") ``` --- profiles/clang-6.0-macos-x86_64 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/clang-6.0-macos-x86_64 b/profiles/clang-6.0-macos-x86_64 index 4c1aa93..0b15e63 100644 --- a/profiles/clang-6.0-macos-x86_64 +++ b/profiles/clang-6.0-macos-x86_64 @@ -8,7 +8,7 @@ arch_build=x86_64 compiler=clang compiler.version=6.0 compiler.libcxx=libc++ -cppstd=17 +compiler.cppstd=17 build_type=Release [options] [env]