Commit e32d53e9 authored by Nicholas Ormrod's avatar Nicholas Ormrod Committed by Peter Griess

Tidied up some includes.

Summary: Changed #include "..." to #include <...> where possible.

Test Plan: recompile

Reviewed By: delong.j@fb.com

FB internal diff: D986803
parent c7854d92
......@@ -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");
......
......@@ -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"
......
......@@ -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>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment