From: Stepan Palamarchuk Date: Wed, 11 Mar 2015 22:43:42 +0000 (-0700) Subject: Protect unprotected X-Git-Tag: v0.31.0~13 X-Git-Url: http://plrg.eecs.uci.edu/git/?p=folly.git;a=commitdiff_plain;h=5924c69c7c9839825554c8d5723644ce36f6a4e7;ds=inline Protect unprotected Summary: This used to be protected before. Test Plan: folly/futures tests Reviewed By: andrii@fb.com Subscribers: trunkagent, folly-diffs@, jsedgwick, yfeldblum FB internal diff: D1907063 Signature: t1:1907063:1426116657:d7430304d5f72a048396e83f8dc6b5a92198fb29 --- diff --git a/folly/futures/Future.h b/folly/futures/Future.h index 5ebaed27..2b81407f 100644 --- a/folly/futures/Future.h +++ b/folly/futures/Future.h @@ -468,6 +468,7 @@ class Future { /// exception) Future willEqual(Future&); + protected: typedef detail::Core* corePtr; // shared core state object