X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2Ftest%2FAtomicBitSetTest.cpp;h=9eb4d24f19f9dac4e99804cb201136016c6bbcf7;hb=7acba7e1a0a75d22087647b3e9e830c9b0e8d41e;hp=11032acdae3c1be8486e168aa7d0777f5c6ff6c1;hpb=ce64f0f685111ac24c7a321ea56d0c3524621df1;p=folly.git diff --git a/folly/test/AtomicBitSetTest.cpp b/folly/test/AtomicBitSetTest.cpp index 11032acd..9eb4d24f 100644 --- a/folly/test/AtomicBitSetTest.cpp +++ b/folly/test/AtomicBitSetTest.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2014 Facebook, Inc. + * Copyright 2017 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,8 +16,9 @@ #include +#include + #include -#include namespace folly { namespace test { @@ -52,11 +53,11 @@ TEST(AtomicBitSet, Simple) { } } -}} // namespaces +} // namespace test +} // namespace folly int main(int argc, char *argv[]) { testing::InitGoogleTest(&argc, argv); - google::ParseCommandLineFlags(&argc, &argv, true); + gflags::ParseCommandLineFlags(&argc, &argv, true); return RUN_ALL_TESTS(); } -