Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
update gflags
Browse files Browse the repository at this point in the history
Reviewed By: yfeldblum

Differential Revision: D4646271

fbshipit-source-id: 5d21407e815588ae2b016001b859a4816851ab00
  • Loading branch information
Igor Sugak authored and facebook-github-bot committed Mar 3, 2017
1 parent 2afefb5 commit 34f5e6e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fblualib/test/LuaUtilsTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ using namespace fblualib::test;

int main(int argc, char *argv[]) {
testing::InitGoogleTest(&argc, argv);
google::ParseCommandLineFlags(&argc, &argv, true);
gflags::ParseCommandLineFlags(&argc, &argv, true);

initLuaEmbedding();

Expand Down
2 changes: 1 addition & 1 deletion fblualib/test/PromiseTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ using namespace fblualib::test;

int main(int argc, char *argv[]) {
testing::InitGoogleTest(&argc, argv);
google::ParseCommandLineFlags(&argc, &argv, true);
gflags::ParseCommandLineFlags(&argc, &argv, true);

initLuaEmbedding();
GL = luaNewState();
Expand Down
2 changes: 1 addition & 1 deletion fblualib/test/UserDataTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ const UserDataMethod<TestDerived1> Metatable<TestDerived1>::methods[] = {

int main(int argc, char *argv[]) {
testing::InitGoogleTest(&argc, argv);
google::ParseCommandLineFlags(&argc, &argv, true);
gflags::ParseCommandLineFlags(&argc, &argv, true);

initLuaEmbedding();
GL = luaNewState();
Expand Down
2 changes: 1 addition & 1 deletion fblualib/thrift/test/SerializerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ using namespace fblualib::thrift::test;

int main(int argc, char *argv[]) {
testing::InitGoogleTest(&argc, argv);
google::ParseCommandLineFlags(&argc, &argv, true);
gflags::ParseCommandLineFlags(&argc, &argv, true);

initLuaEmbedding();

Expand Down

0 comments on commit 34f5e6e

Please sign in to comment.