disable move error + enforce c++11 for clang-tidy

This commit is contained in:
Krishna Vedala
2020-07-11 15:09:00 -04:00
parent d34bede6f4
commit 4e12f03c6c
2 changed files with 2 additions and 2 deletions

View File

@@ -122,7 +122,7 @@ jobs:
if not cpp_files:
sys.exit(0)
subprocess.run(["clang-tidy-10", "--fix", "-p=build", *cpp_files, "--"],
subprocess.run(["clang-tidy-10", "--fix", "-p=build", "--extra-args=-std=c++11", *cpp_files, "--"],
check=True, text=True, stderr=subprocess.STDOUT)
# for cpp_file in cpp_files:
# subprocess.run(["clang-tidy-10", "--fix", "-p=build", cpp_file, "--"],