Skip to content

Commit

Permalink
Upgrade mobile BUCK and .bzl files to use C++14
Browse files Browse the repository at this point in the history
Summary:
Upgrade mobile `BUCK` and `.bzl` files to use C++14.

Let's see what happens.

Reviewed By: mzlee

Differential Revision: D14223329

fbshipit-source-id: ff642ca017103d9415c4d7f5beaf5ded07ef7ff1
  • Loading branch information
yfeldblum authored and facebook-github-bot committed Mar 16, 2019
1 parent 97e6ea1 commit 508daf2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ReactAndroid/src/main/jni/first-party/fb/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ oss_cxx_library(
"-fexceptions",
"-Wall",
"-Werror",
"-std=c++11",
"-std=c++14",
"-DDISABLE_CPUCAP",
"-DDISABLE_XPLAT",
],
Expand Down
2 changes: 1 addition & 1 deletion ReactAndroid/src/main/jni/first-party/yogajni/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ oss_cxx_library(
"-Wall",
"-Werror",
"-O3",
"-std=c++11",
"-std=c++14",
],
soname = "libyoga.$(ext)",
visibility = ["PUBLIC"],
Expand Down
2 changes: 1 addition & 1 deletion ReactCommon/microprofiler/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cxx_library(
compiler_flags = [
"-Wall",
"-Werror",
"-std=c++11",
"-std=c++14",
"-fexceptions",
"-fno-data-sections",
],
Expand Down

0 comments on commit 508daf2

Please sign in to comment.