From 8340844ea5677fbf01b64ec4423dfe24fa567d53 Mon Sep 17 00:00:00 2001 From: Michael Lee Date: Tue, 13 Sep 2016 16:02:19 -0700 Subject: [PATCH] Remove Benchmark.h dependency in SpookyHash tests Summary: It would seem the folly/Benchmark.h dependency was to pull in glog/logging.h. Include what you use. Reviewed By: yfeldblum Differential Revision: D3857112 fbshipit-source-id: 8d5bd105e10eee8f5b6e5d377d58ae84d908ed57 --- folly/test/SpookyHashV1Test.cpp | 3 ++- folly/test/SpookyHashV2Test.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/folly/test/SpookyHashV1Test.cpp b/folly/test/SpookyHashV1Test.cpp index 4b81ce19..9b78bda3 100644 --- a/folly/test/SpookyHashV1Test.cpp +++ b/folly/test/SpookyHashV1Test.cpp @@ -21,7 +21,6 @@ #endif #include -#include #include #include @@ -31,6 +30,8 @@ #include #include +#include + using namespace ::folly::hash; static bool failed = false; diff --git a/folly/test/SpookyHashV2Test.cpp b/folly/test/SpookyHashV2Test.cpp index c1703187..26a0c8a6 100644 --- a/folly/test/SpookyHashV2Test.cpp +++ b/folly/test/SpookyHashV2Test.cpp @@ -21,7 +21,6 @@ #endif #include -#include #include #include @@ -31,6 +30,8 @@ #include #include +#include + using namespace ::folly::hash; static bool failed = false; -- 2.34.1