From fd46bce1a93d3b4ea8c2f6613575398efa41490a Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Wed, 30 Nov 2016 11:47:49 -0800 Subject: [PATCH] Wifi: don't require C++11. C++14 has been officially supported in the build system for a while now. (see b/32019064). Test: pass Change-Id: I328b0bcf9e5c32e209e4efc1ac5b96afdb542a5a --- wifi/1.0/default/Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wifi/1.0/default/Android.mk b/wifi/1.0/default/Android.mk index 646613ba32..62d2e0bb04 100644 --- a/wifi/1.0/default/Android.mk +++ b/wifi/1.0/default/Android.mk @@ -16,7 +16,7 @@ LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE := android.hardware.wifi@1.0-service LOCAL_MODULE_RELATIVE_PATH := hw -LOCAL_CPPFLAGS := -std=c++11 -Wall -Wno-unused-parameter -Werror -Wextra +LOCAL_CPPFLAGS := -Wall -Wno-unused-parameter -Werror -Wextra LOCAL_SRC_FILES := \ service.cpp \ wifi.cpp \