Skip to content

Commit 74dbd4d

Browse files
committed
fix
1 parent 6fd6c74 commit 74dbd4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/scripts/greps_clangformat_cppcheck.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ grep "false" --recursive ../library/ && exit 1
2121

2222
echo "check ll instead of long long or int64_t"
2323
grep "long long" --recursive ../library/ && exit 1
24-
grep "int64_t" --recursive ../library/ && exit 1
24+
grep "int64_t" --recursive ../library/**/*.hpp | grep "uint64_t" --invert-match && exit 1
2525

2626
echo "check pii instead of pair<int, int>"
2727
grep "pair<int, int>" --recursive ../library/ && exit 1

0 commit comments

Comments
 (0)