Commit 981ea831 authored by Christopher Dykes's avatar Christopher Dykes Committed by Facebook Github Bot

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
parent b3061cbe
...@@ -83,7 +83,7 @@ class FOLLY_EXPORT PredicateDoesNotObtain : public FutureException { ...@@ -83,7 +83,7 @@ class FOLLY_EXPORT PredicateDoesNotObtain : public FutureException {
[[noreturn]] void throwPredicateDoesNotObtain(); [[noreturn]] void throwPredicateDoesNotObtain();
class FOLLY_EXPORT NoFutureInSplitter : FutureException { class FOLLY_EXPORT NoFutureInSplitter : public FutureException {
public: public:
NoFutureInSplitter() : FutureException("No Future in this FutureSplitter") {} NoFutureInSplitter() : FutureException("No Future in this FutureSplitter") {}
}; };
......
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