diff options
author | Dmitrij D. Czarkoff <czarkoff@gmail.com> | 2016-05-13 06:29:34 +0200 |
---|---|---|
committer | Dmitrij D. Czarkoff <czarkoff@gmail.com> | 2016-05-13 06:30:51 +0200 |
commit | aac1d79e772700115b8b0b19c8fac0894d62fb04 (patch) | |
tree | 370b77c3821ad04260e8a9bf5d54d5805c27d13c | |
parent | 9e3db8bdaad7d7752b24df5d9832b980a21f4496 (diff) | |
download | imv-aac1d79e772700115b8b0b19c8fac0894d62fb04.tar.gz |
Remove "-std=gnu11" from .travis.yml
This reverts commit 9e3db8bdaad7d7752b24df5d9832b980a21f4496. The effort was
futile.
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 9762506..440da38 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ compiler: - gcc env: - - V=yes CFLAGS="-W -Wall -Wextra -Wpedantic -Wpointer-arith -Wuninitialized -Wstrict-prototypes -Wmissing-prototypes -Wunused -Wsign-compare -Wshadow -Werror --std=gnu11" + - V=yes CFLAGS="-W -Wall -Wextra -Wpedantic -Wpointer-arith -Wuninitialized -Wstrict-prototypes -Wmissing-prototypes -Wunused -Wsign-compare -Wshadow -Werror" script: - make |