A few missing includes
authorHans Fugal <fugalh@fb.com>
Thu, 3 Apr 2014 18:05:32 +0000 (11:05 -0700)
committerSara Golemon <sgolemon@fb.com>
Fri, 4 Apr 2014 02:55:04 +0000 (19:55 -0700)
Summary: These were required to build folly on OSX.

Test Plan: build

Reviewed By: davejwatson@fb.com

FB internal diff: D1256856

folly/wangle/ManualExecutor.cpp
folly/wangle/WangleException.h
folly/wangle/detail.h

index 8caf35855337be7a2d7d68412ffbe75ac2854b16..cb9e6aaf3000b2e65e578af32f8404378c6e58ad 100644 (file)
@@ -17,6 +17,7 @@
 #include "ManualExecutor.h"
 
 #include <string.h>
+#include <string>
 
 #include <stdexcept>
 
index 40613c5ce57a3a72537ce891a79290ba48efc385..b1fd737a8f8e0bfd16210ee44e9fa734523af8c8 100644 (file)
@@ -17,6 +17,7 @@
 #pragma once
 
 #include <exception>
+#include <string>
 
 namespace folly { namespace wangle {
 
index caa6cb723c07f06a14f693e3a4184a46b99c3983..dda83ad40b74fcc565db3c4cbce1d31e2e22dc09 100644 (file)
 
 #pragma once
 
+#include <atomic>
 #include <folly/Optional.h>
 #include <stdexcept>
-#include <atomic>
+#include <vector>
 
 #include "Try.h"
 #include "Promise.h"