From 981ea8310405663e4098d72abd027711ddc94422 Mon Sep 17 00:00:00 2001 From: Christopher Dykes Date: Wed, 8 Nov 2017 16:09:09 -0800 Subject: [PATCH] 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 --- folly/futures/FutureException.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") {} }; -- 2.34.1