add missing includes
authorShubhanshu Agrawal <shubhanshu@fb.com>
Thu, 20 Oct 2016 01:24:30 +0000 (18:24 -0700)
committerFacebook Github Bot <facebook-github-bot-bot@fb.com>
Thu, 20 Oct 2016 01:38:42 +0000 (18:38 -0700)
Summary: add missing includes in folly fibers.q

Reviewed By: A5he

Differential Revision: D4036830

fbshipit-source-id: 4dcb87377979f2875ba31b4869c2637a82298957

folly/fibers/BatchDispatcher.h
folly/fibers/WhenN.h

index 65940ea66460ce8cf4c0c3d989d12aeb6add8ca1..6f702520c86f5d02617fdd439792b2bd878f431b 100644 (file)
  */
 #pragma once
 
+#include <folly/Function.h>
 #include <folly/futures/Future.h>
 #include <folly/futures/Promise.h>
+#include <exception>
+#include <memory>
+#include <stdexcept>
+#include <vector>
 
 namespace folly {
 namespace fibers {
index 217ad90a8bdfb68506c01ca74cfb935b05865e13..05a5b35ad36b0d5a2f9346a151b6a6b35e6bf3ee 100644 (file)
  */
 #pragma once
 
+#include <iterator>
 #include <memory>
+#include <type_traits>
+#include <utility>
+#include <vector>
 
 namespace folly {
 namespace fibers {