mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 18:09:48 +00:00
7 lines
198 B
Bash
Executable File
7 lines
198 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for file in $(find . -maxdepth 1 -type f -name '*.cpp'); do
|
|
echo "Tidying $file"
|
|
clang-tidy $file -checks=-clang-analyzer-optin.cplusplus.VirtualCall -- -std=c++03
|
|
done
|