C++14 is the default now.

Bug: http://b/32019064
Test: builds
Change-Id: Iacc91f1150cdab2df40db3e33f5b57933ff79824
This commit is contained in:
Elliott Hughes 2017-08-23 14:33:08 -07:00
parent 4a38e2b53a
commit b2b0d1f5e7
3 changed files with 3 additions and 4 deletions

View file

@ -33,7 +33,7 @@ LOCAL_SHARED_LIBRARIES := \
libutils
LOCAL_CLANG := true
LOCAL_CPPFLAGS += -std=c++14 -Wno-unused-parameter
LOCAL_CPPFLAGS += -Wno-unused-parameter
LOCAL_MODULE := libinput_evdev
LOCAL_MODULE_TAGS := optional
@ -55,7 +55,7 @@ LOCAL_SHARED_LIBRARIES := \
liblog
LOCAL_CLANG := true
LOCAL_CPPFLAGS += -std=c++14 -Wno-unused-parameter
LOCAL_CPPFLAGS += -Wno-unused-parameter
LOCAL_MODULE_TAGS := optional

View file

@ -4,7 +4,7 @@ include $(CLEAR_VARS)
LOCAL_MODULE := static-hal-check
LOCAL_SRC_FILES := struct-size.cpp struct-offset.cpp struct-last.cpp
LOCAL_SHARED_LIBRARIES := libhardware
LOCAL_CFLAGS := -std=gnu++11 -O0
LOCAL_CFLAGS := -O0
LOCAL_C_INCLUDES += \
system/media/camera/include

View file

@ -21,7 +21,6 @@ LOCAL_SHARED_LIBRARIES := \
LOCAL_CLANG := true
LOCAL_CFLAGS += -Wall -Wextra -Wno-unused-parameter
LOCAL_CPPFLAGS += -std=c++14
# TestHelpers uses mktemp. As the path is given to TempFile, we can't do too much
# here (e.g., use mkdtemp first). At least races will lead to an early failure, as