From: Christopher Dykes Date: Wed, 22 Mar 2017 01:42:28 +0000 (-0700) Subject: Use the gflags portability header X-Git-Tag: v2017.03.27.00~17 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=69bd8deb890fb6d2c648815e8e986f1cd1b93fac;p=folly.git 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 --- 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;