X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=folly%2Ftest%2FAtomicBitSetTest.cpp;h=9eb4d24f19f9dac4e99804cb201136016c6bbcf7;hb=f2925b23df8d85ebca72d62a69f1282528c086de;hp=5c939bad0047a852d69c4ca72aca9f6ca945bc91;hpb=22afce906d7e98d95f8c45c3301072d9fd891d41;p=folly.git diff --git a/folly/test/AtomicBitSetTest.cpp b/folly/test/AtomicBitSetTest.cpp index 5c939bad..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. @@ -14,10 +14,11 @@ * limitations under the License. */ -#include "folly/AtomicBitSet.h" +#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(); } -