From: Nicholas Ormrod Date: Thu, 26 Sep 2013 23:33:38 +0000 (-0700) Subject: Tidied up some includes. X-Git-Tag: v0.22.0~863 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e32d53e9022e6c7284bb02c93ec4e6be0ca77610;p=folly.git Tidied up some includes. Summary: Changed #include "..." to #include <...> where possible. Test Plan: recompile Reviewed By: delong.j@fb.com FB internal diff: D986803 --- diff --git a/folly/test/ConcurrentSkipListTest.cpp b/folly/test/ConcurrentSkipListTest.cpp index 23c3edbc..1ac29dca 100644 --- a/folly/test/ConcurrentSkipListTest.cpp +++ b/folly/test/ConcurrentSkipListTest.cpp @@ -27,7 +27,7 @@ #include "folly/ConcurrentSkipList.h" #include "folly/Foreach.h" #include "folly/String.h" -#include "gtest/gtest.h" +#include DEFINE_int32(num_threads, 12, "num concurrent threads to test"); diff --git a/folly/test/RWSpinLockTest.cpp b/folly/test/RWSpinLockTest.cpp index 8fcba1f5..9169e887 100644 --- a/folly/test/RWSpinLockTest.cpp +++ b/folly/test/RWSpinLockTest.cpp @@ -23,7 +23,7 @@ #include #include -#include "gtest/gtest.h" +#include #include #include #include "folly/RWSpinLock.h" diff --git a/folly/test/stl_tests/StlVectorTest.cpp b/folly/test/stl_tests/StlVectorTest.cpp index 84622bee..17641ec0 100644 --- a/folly/test/stl_tests/StlVectorTest.cpp +++ b/folly/test/stl_tests/StlVectorTest.cpp @@ -187,8 +187,8 @@ THOUGHTS: #include "folly/ScopeGuard.h" #include "folly/Conv.h" -#include "boost/preprocessor.hpp" -#include "boost/iterator/iterator_adaptor.hpp" +#include +#include #include #include