Add deprecation comments to folly::makeFuture.
[folly.git] / folly / test / AtomicBitSetTest.cpp
index 5c939bad0047a852d69c4ca72aca9f6ca945bc91..9eb4d24f19f9dac4e99804cb201136016c6bbcf7 100644 (file)
@@ -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.
  * limitations under the License.
  */
 
-#include "folly/AtomicBitSet.h"
+#include <folly/AtomicBitSet.h>
+
+#include <folly/portability/GTest.h>
 
 #include <glog/logging.h>
-#include <gtest/gtest.h>
 
 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();
 }
-