From c4100f24ed5191225e77f626163745df80d53fee Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Wed, 8 Jul 2020 15:48:22 -0400 Subject: [PATCH] set clang-tidy standard to c++11 --- .github/workflows/awesome_workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/awesome_workflow.yml b/.github/workflows/awesome_workflow.yml index 6be0169a8..f6168d87e 100644 --- a/.github/workflows/awesome_workflow.yml +++ b/.github/workflows/awesome_workflow.yml @@ -129,7 +129,7 @@ jobs: print("clang-tidy:") for cpp_file in cpp_files: - subprocess.run(["clang-tidy", "--quiet", "--fix", cpp_file, "--"], check=True, text=True) + subprocess.run(["clang-tidy", "--quiet", "--extra-arg=-std=c++11", "--fix", cpp_file, "--"], check=True, text=True) # print("g++:") # compile_exts = tuple(".c .c++ .cc .cpp .cu .cxx".split())