aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2020-04-04 21:26:38 +0200
committerjackpoz <giacomopoz@gmail.com>2020-04-05 19:10:56 +0200
commitaf1260c40e333e0d2d506128099f8263f5f2304f (patch)
tree605b2409b705bd4c44e60934a13e37d630ac1074
parent32c9f1c7a228db33110ab0ab5975ba37cba85106 (diff)
CI/Circle CI: Add codestyle check
ObjectGuid::GetCounter() should not be called in logs, use ObjectGuid::ToString().c_str() instead
-rw-r--r--contrib/check_codestyle.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/check_codestyle.sh b/contrib/check_codestyle.sh
index 3f4ab9d2657..02f39285cd3 100644
--- a/contrib/check_codestyle.sh
+++ b/contrib/check_codestyle.sh
@@ -4,7 +4,7 @@ set -e
echo "Codestyle check script:"
echo
-regexChecks=()
+regexChecks=("TC_LOG_.+GetCounter")
for check in ${regexChecks[@]}; do
echo " Checking RegEx: '${check}'"