From 69bd8deb890fb6d2c648815e8e986f1cd1b93fac Mon Sep 17 00:00:00 2001 From: Christopher Dykes Date: Tue, 21 Mar 2017 18:42:28 -0700 Subject: [PATCH] Use the gflags portability header Summary: The gflags portability header should always be used in Folly. There were a couple of places gflags was being used directly. This fixes that. Reviewed By: yfeldblum Differential Revision: D4748674 fbshipit-source-id: ba3c0564a39f870f1f5f9371e32d06eb84591ba7 --- folly/experimental/hazptr/test/HazptrTest.cpp | 2 +- folly/io/async/test/SocketClient.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/folly/experimental/hazptr/test/HazptrTest.cpp b/folly/experimental/hazptr/test/HazptrTest.cpp index 62f5908f..bcabbe72 100644 --- a/folly/experimental/hazptr/test/HazptrTest.cpp +++ b/folly/experimental/hazptr/test/HazptrTest.cpp @@ -21,7 +21,7 @@ #include #include -#include +#include #include #include diff --git a/folly/io/async/test/SocketClient.cpp b/folly/io/async/test/SocketClient.cpp index 83e34d3f..8439f163 100644 --- a/folly/io/async/test/SocketClient.cpp +++ b/folly/io/async/test/SocketClient.cpp @@ -18,7 +18,7 @@ #include #include -#include +#include using namespace folly; -- 2.34.1