Mark the base class of NoFutureInSplitter as public
authorChristopher Dykes <cdykes@fb.com>
Thu, 9 Nov 2017 00:09:09 +0000 (16:09 -0800)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Thu, 9 Nov 2017 00:25:27 +0000 (16:25 -0800)
Summary: Because every other exception is already marked as public.

Reviewed By: yfeldblum

Differential Revision: D6275414

fbshipit-source-id: 8e1fc4ceafedbdb44733ab57aecb6050c4160994

folly/futures/FutureException.h

index 0df8d8b37fc6a727bdc4460180b8f9d8c9edee7c..4bd2021cec299e19e3540bbf58e6708c49f1cd5a 100644 (file)
@@ -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") {}
 };