We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
NONNEG
1 parent 24dfe7b commit 823cc4eCopy full SHA for 823cc4e
1 file changed
.github/workflows/CI-unixish.yml
@@ -239,9 +239,10 @@ jobs:
239
run: |
240
brew install coreutils
241
242
+ # TODO: avoid duplicating compiler flags from Makefile
243
- name: Check syntax with NONNEG
244
- ls lib/*.cpp | xargs -n 1 -P $(nproc) g++ -fsyntax-only -std=c++0x -Ilib -Iexternals -Iexternals/picojson -Iexternals/simplecpp -Iexternals/tinyxml2 -DNONNEG
245
+ ls lib/*.cpp | xargs -n 1 -P $(nproc) g++ -pedantic -Wall -Wextra -Wcast-qual -Wfloat-equal -Wmissing-declarations -Wmissing-format-attribute -Wno-long-long -Wpacked -Wredundant-decls -Wundef -Wno-sign-compare -Wno-multichar -Woverloaded-virtual -fsyntax-only -std=c++11 -Ilib -Iexternals -Iexternals/picojson -Iexternals/simplecpp -Iexternals/tinyxml2 -DNONNEG
246
247
build_cmake_boost:
248
0 commit comments