Commit 0a69d138 authored by Louis Brandy's avatar Louis Brandy Committed by Facebook Github Bot

a few include-what-you-use fixes

Summary: These headers don't include everything they use so things build now because of rando include orders and transitive inclusion. Breaks when attempting to build with clang modules.

Reviewed By: shixiao

Differential Revision: D8954753

fbshipit-source-id: d222370f17594f5c6aeccd21cbfd61bd8102245a
parent 360307fd
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#pragma once #pragma once
#include <stddef.h> #include <stddef.h>
#include <stdint.h>
namespace folly { namespace folly {
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
*/ */
#pragma once #pragma once
#include <chrono>
#include <exception> #include <exception>
#include <stdexcept> #include <stdexcept>
......
...@@ -36,6 +36,8 @@ ...@@ -36,6 +36,8 @@
* https://github.com/boostorg/context/blob/boost-1.61.0/include/boost/context/detail/fcontext.hpp * https://github.com/boostorg/context/blob/boost-1.61.0/include/boost/context/detail/fcontext.hpp
*/ */
#include <folly/Function.h>
namespace folly { namespace folly {
namespace fibers { namespace fibers {
......
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