Eliminate a string allocation in folly::SocketAddr and bug in char[] conversion
[folly.git] / folly / test / MPMCPipelineTest.cpp
index eed99054223af6ea15e2f11d4b68bba9e58c2765..1914b6737558b2dff9fd99e8279775399518af40 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Facebook, Inc.
+ * Copyright 2016 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,7 +14,7 @@
  * limitations under the License.
  */
 
-#include "folly/MPMCPipeline.h"
+#include <folly/MPMCPipeline.h>
 
 #include <thread>
 #include <vector>
@@ -22,7 +22,7 @@
 #include <glog/logging.h>
 #include <gtest/gtest.h>
 
-#include "folly/Conv.h"
+#include <folly/Conv.h>
 
 namespace folly { namespace test {
 
@@ -160,7 +160,6 @@ TEST(MPMCPipeline, MultiThreaded) {
 
 int main(int argc, char *argv[]) {
   testing::InitGoogleTest(&argc, argv);
-  google::ParseCommandLineFlags(&argc, &argv, true);
+  gflags::ParseCommandLineFlags(&argc, &argv, true);
   return RUN_ALL_TESTS();
 }
-