I was wrong found the setting that has it set to c++20 in cmake/macros

This commit is contained in:
2024-08-22 23:39:22 -04:00
parent 3846c5fc37
commit f89b9b04f1

View File

@@ -72,7 +72,7 @@ runs:
if: ${{ inputs.tag_release == 'true' }}
shell: bash
run: |
cppcheck --force --inline-suppr --std=c++14 --output-file=report.txt /azerothcore/modules/${{ env.REPO_NAME }}
cppcheck --force --inline-suppr --std=c++20 --output-file=report.txt /azerothcore/modules/${{ env.REPO_NAME }}
if [ -s report.txt ]; then
cat report.txt
exit 1