1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-05-02 01:29:36 +00:00

std::conditional_t can be used from C++14.

This commit is contained in:
HiraokaTakuya 2019-06-30 16:43:36 +09:00 committed by nodchip
parent fc5f64b383
commit 8718438943

View file

@ -160,8 +160,8 @@ endif
### 3.1 Selecting compiler (default = gcc)
CXXFLAGS += -Wall -Wcast-qual -fno-exceptions -std=c++11 $(EXTRACXXFLAGS)
DEPENDFLAGS += -std=c++11
CXXFLAGS += -Wall -Wcast-qual -fno-exceptions -std=c++14 $(EXTRACXXFLAGS)
DEPENDFLAGS += -std=c++14
LDFLAGS += $(EXTRALDFLAGS)
ifeq ($(COMP),)