diff --git a/csharp/BUCK b/csharp/BUCK index 81b570e5..b878d428 100644 --- a/csharp/BUCK +++ b/csharp/BUCK @@ -12,7 +12,7 @@ load( "yoga_dep", ) -COMPILER_FLAGS = BASE_COMPILER_FLAGS + ["-std=c++11"] +COMPILER_FLAGS = BASE_COMPILER_FLAGS + ["-std=c++14"] fb_native.csharp_library( name = "yogalibnet46", diff --git a/java/BUCK b/java/BUCK index 59a1613b..0ef6bd28 100644 --- a/java/BUCK +++ b/java/BUCK @@ -18,7 +18,7 @@ yoga_cxx_library( "-Wall", "-Werror", "-Os", - "-std=c++11", + "-std=c++14", ], platforms = ANDROID, preprocessor_flags = [ diff --git a/lib/fb/BUCK b/lib/fb/BUCK index 39294f76..d448d50b 100644 --- a/lib/fb/BUCK +++ b/lib/fb/BUCK @@ -32,7 +32,7 @@ yoga_cxx_library( "-Wall", "-Werror", "-Wno-unused-parameter", - "-std=c++11", + "-std=c++14", ], platforms = (ANDROID,), visibility = ["PUBLIC"], diff --git a/lib/gtest/BUCK b/lib/gtest/BUCK index f72c5f51..21dbc8b3 100644 --- a/lib/gtest/BUCK +++ b/lib/gtest/BUCK @@ -5,7 +5,7 @@ load("//tools/build_defs/oss:yoga_defs.bzl", "YOGA_ROOTS", "subdir_glob", "yoga_cxx_library") COMPILER_FLAGS = [ - "-std=c++11", + "-std=c++14", "-Wno-missing-prototypes", ]