gflags now likes namespace gflags, not google
[folly.git] / folly / test / ArenaTest.cpp
index f54c089253940df68a63faebb95920093cb575af..4d77e207afa9e4c5aab463fb4ea5f71c45d8df30 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#include "folly/Arena.h"
-#include "folly/Memory.h"
+#include <folly/Arena.h>
+#include <folly/Memory.h>
 
 #include <set>
 #include <vector>
@@ -157,7 +157,7 @@ TEST(Arena, SizeLimit) {
 
 int main(int argc, char *argv[]) {
   testing::InitGoogleTest(&argc, argv);
-  google::ParseCommandLineFlags(&argc, &argv, true);
+  gflags::ParseCommandLineFlags(&argc, &argv, true);
   auto ret = RUN_ALL_TESTS();
   return ret;
 }