blob: 644f62153d8ec5a4ec65b0794af064578564586e [file] [log] [blame]
#!/bin/bash
. ./.ci/.common.sh
TIDY_FILES=(
utils/log.h
utils/properties.h
)
set -xe
for source in "${TIDY_FILES[@]}"
do
$CLANG_TIDY $source -- -x c++ $INCLUDE_DIRS $CXXARGS
done