Disable type limit warnings on Travis.

These warnings can be triggered by defensive code and assertions, such as range checks on parameters.  I'd rather silence the warning than remove the check, even if it's optimized away.
This commit is contained in:
Dag-Erling Smørgrav 2019-04-03 13:05:27 +02:00 committed by Dag-Erling Smørgrav
parent 2cb49e6151
commit 834040505c
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ compiler:
env:
global:
- CFLAGS="-Wno-unused-result"
- CFLAGS="-Wno-unused-result -Wno-type-limits"
- CRYB_TO=0.20190326
before_install: