summaryrefslogtreecommitdiff
path: root/TestScripts/cryptest-tidy.sh
blob: 537b3785d022ec36131b50a64a0046df830a4580 (plain)
1
2
3
4
5
6
#!/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