From: Christopher Dykes Date: Thu, 9 Nov 2017 00:09:09 +0000 (-0800) Subject: Mark the base class of NoFutureInSplitter as public X-Git-Tag: v2017.11.13.00~17 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=981ea8310405663e4098d72abd027711ddc94422;p=folly.git Mark the base class of NoFutureInSplitter as public Summary: Because every other exception is already marked as public. Reviewed By: yfeldblum Differential Revision: D6275414 fbshipit-source-id: 8e1fc4ceafedbdb44733ab57aecb6050c4160994 --- diff --git a/folly/futures/FutureException.h b/folly/futures/FutureException.h index 0df8d8b3..4bd2021c 100644 --- a/folly/futures/FutureException.h +++ b/folly/futures/FutureException.h @@ -83,7 +83,7 @@ class FOLLY_EXPORT PredicateDoesNotObtain : public FutureException { [[noreturn]] void throwPredicateDoesNotObtain(); -class FOLLY_EXPORT NoFutureInSplitter : FutureException { +class FOLLY_EXPORT NoFutureInSplitter : public FutureException { public: NoFutureInSplitter() : FutureException("No Future in this FutureSplitter") {} };