mirror of
https://github.com/sockspls/badfish
synced 2025-05-01 01:03:09 +00:00
Remove redundant -std=c++0x flag
This flag is functionally identical to '-std=c++11' flag which is part of standard flags. No functional change Resolves #571
This commit is contained in:
parent
552b3ccb66
commit
ebec2fa48e
1 changed files with 2 additions and 2 deletions
|
@ -194,8 +194,8 @@ ifeq ($(COMP),clang)
|
||||||
CXX=clang++
|
CXX=clang++
|
||||||
CXXFLAGS += -pedantic -Wextra -Wshadow
|
CXXFLAGS += -pedantic -Wextra -Wshadow
|
||||||
ifeq ($(UNAME),Darwin)
|
ifeq ($(UNAME),Darwin)
|
||||||
CXXFLAGS += -std=c++0x -stdlib=libc++
|
CXXFLAGS += -stdlib=libc++
|
||||||
DEPENDFLAGS += -std=c++0x -stdlib=libc++
|
DEPENDFLAGS += -stdlib=libc++
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue