From: Josh Watzman Date: Thu, 4 Jun 2015 19:22:12 +0000 (-0700) Subject: Add missing include X-Git-Tag: v0.43.0~2 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=59badf857a28d6006edb483c12469ac37e54ef4a;p=folly.git Add missing include Summary: `std::runtime_error` is defined in this header. Most build systems seem to end up including it transitively anyways, but one version of Clang on my Mac does not. Test Plan: `fbconfig -r folly && fbmake dbg` still works. Builds on my Mac with MacPorts clang 3.6. Reviewed By: ldbrandy@fb.com Subscribers: folly-diffs@, yfeldblum, chalfant FB internal diff: D2127268 Signature: t1:2127268:1433437985:546d0de71d8973d10f8ae3fdb6c61efae59444b9 --- diff --git a/folly/Executor.h b/folly/Executor.h index c7900459..2af0b809 100644 --- a/folly/Executor.h +++ b/folly/Executor.h @@ -19,6 +19,7 @@ #include #include #include +#include namespace folly {