rm -Wpedantic from general purpose builds #2
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
currently,
-Wpedantic
is a part ofCMAKE_CXX_FLAGS
for debug builds[ref1]
and produces warnings like this[ref2]
:ref1:
ref2:
also currently, we're not planning to be all that portable (ikr..) and we also cannot get rid the 128bit integer (at least at the moment I don't see a way that wouldn't require some kind of array implementation tomfoolery).
perhaps have a separate ci step called "portability" and turn this warning on there but remove it from CMakeLists.txt, i.e. don't use it for standard builds.