diff options
author | jackpoz <giacomopoz@gmail.com> | 2020-04-04 21:26:38 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-12-31 21:56:38 +0100 |
commit | e485932c45022c2882205b1f07c3fd4743990a4c (patch) | |
tree | 564433042528f22815ab3295c56fa557a00abfdf | |
parent | 8878ba2dcae671f405bdf06cc37cb6af593a8626 (diff) |
CI/Circle CI: Add codestyle check
ObjectGuid::GetCounter() should not be called in logs, use ObjectGuid::ToString().c_str() instead
(cherry picked from commit af1260c40e333e0d2d506128099f8263f5f2304f)
-rw-r--r-- | contrib/check_codestyle.sh | 2 |
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}'" |