From 980c762ba256f1f501dfa0d3d02401fad94d857e Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Thu, 22 Oct 2020 08:39:54 +1000 Subject: [PATCH] clang: bump to version 11 --- conan/profile/x86_64-clang-linux-release | 6 +++--- init.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conan/profile/x86_64-clang-linux-release b/conan/profile/x86_64-clang-linux-release index 384c5af..7e1ae70 100644 --- a/conan/profile/x86_64-clang-linux-release +++ b/conan/profile/x86_64-clang-linux-release @@ -3,7 +3,7 @@ os=Linux arch=x86_64 compiler=clang -compiler.version=10 +compiler.version=11 compiler.libcxx=libc++ build_type=Release @@ -13,5 +13,5 @@ build_type=Release [build_requires] [env] -CC=clang-10 -CXX=clang++-10 +CC=clang-11 +CXX=clang++-11 diff --git a/init.py b/init.py index e506f15..f4a5c01 100755 --- a/init.py +++ b/init.py @@ -8,7 +8,7 @@ from dataclasses import dataclass, field from typing import Dict, List, Optional -CLANG_VERSION = 10 +CLANG_VERSION = 11 @dataclass