libcryfs/vendor/cryptopp/vendor_cryptopp/TestScripts/cryptest-tidy.sh
2018-05-20 19:21:59 -07:00

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