Tidied up some includes.
authorNicholas Ormrod <njormrod@fb.com>
Thu, 26 Sep 2013 23:33:38 +0000 (16:33 -0700)
committerPeter Griess <pgriess@fb.com>
Tue, 15 Oct 2013 01:43:37 +0000 (18:43 -0700)
Summary: Changed #include "..." to #include <...> where possible.

Test Plan: recompile

Reviewed By: delong.j@fb.com

FB internal diff: D986803

folly/test/ConcurrentSkipListTest.cpp
folly/test/RWSpinLockTest.cpp
folly/test/stl_tests/StlVectorTest.cpp

index 23c3edbc05f41ffee3d53f33201ee96995f56411..1ac29dca600f8b627947e67c3544e6de9d04d927 100644 (file)
@@ -27,7 +27,7 @@
 #include "folly/ConcurrentSkipList.h"
 #include "folly/Foreach.h"
 #include "folly/String.h"
-#include "gtest/gtest.h"
+#include <gtest/gtest.h>
 
 DEFINE_int32(num_threads, 12, "num concurrent threads to test");
 
index 8fcba1f5fe4675e18c261cc96ca544afa8d00137..9169e887be893a3dd57654691bc1d36f29bec82b 100644 (file)
@@ -23,7 +23,7 @@
 #include <vector>
 #include <thread>
 
-#include "gtest/gtest.h"
+#include <gtest/gtest.h>
 #include <gflags/gflags.h>
 #include <glog/logging.h>
 #include "folly/RWSpinLock.h"
index 84622bee14dd0ab3f47f1e6008a89a3ceb17a8bf..17641ec04829b0f0171b5897e9559fb6840f3085 100644 (file)
@@ -187,8 +187,8 @@ THOUGHTS:
 
 #include "folly/ScopeGuard.h"
 #include "folly/Conv.h"
-#include "boost/preprocessor.hpp"
-#include "boost/iterator/iterator_adaptor.hpp"
+#include <boost/preprocessor.hpp>
+#include <boost/iterator/iterator_adaptor.hpp>
 #include <gflags/gflags.h>
 #include <gtest/gtest.h>