Skip to content

Commit 57b3d76

Browse files
revert: default to c11
1 parent 75bd8cb commit 57b3d76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ fn run_cppcheck<'a>(executable: &str, code_path: impl AsRef<str>, output_path: i
4444
// build the command to run
4545
command_with_sh
4646
.arg("-c")
47-
.arg(format!("{executable} {code_dir} -l 6 --std=c++20 --addon=misra --xml --output-file={output_file} {cppcheck_build_dir}"))
47+
.arg(format!("{executable} {code_dir} -l 6 --addon=misra --xml --output-file={output_file} {cppcheck_build_dir}"))
4848
.stdout(Stdio::inherit())
4949
.stderr(Stdio::inherit());
5050
log::debug!("Running cppcheck START :: {:?}", start.elapsed());

0 commit comments

Comments
 (0)