mirror of
https://github.com/clearlinux/folly.git
synced 2026-09-01 02:34:43 +00:00
struct/class consistency
Summary: This diff is based on https://github.com/facebook/folly/pull/95 by gitbug user mikekap. It changes the struct/class naming of forward declarations to match their definitions. Test Plan: fbconfig -r folly && fbmake runtests Reviewed By: markisaa@fb.com Subscribers: fugalh, folly-diffs@, jsedgwick, yfeldblum, chalfant FB internal diff: D2032995 Tasks: 6783581 Signature: t1:2032995:1430339337:79193fd8409b73e8a9155133f326b7cee534244d
This commit is contained in:
committed by
Praveen Kumar Ramakrishnan
parent
3192839636
commit
b44cacfd2c
+1
-1
@@ -34,7 +34,7 @@ namespace folly {
|
||||
namespace detail {
|
||||
|
||||
template<typename T, template<typename> class Atom>
|
||||
class SingleElementQueue;
|
||||
struct SingleElementQueue;
|
||||
|
||||
template <typename T> class MPMCPipelineStageImpl;
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
namespace folly { namespace wangle {
|
||||
|
||||
template <class T> class FunctionObserver;
|
||||
template <class T> struct FunctionObserver;
|
||||
|
||||
/// Observer interface. You can subclass it, or you can just use create()
|
||||
/// to use std::functions.
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace folly { namespace wangle {
|
||||
// alias it.
|
||||
typedef std::shared_ptr<folly::Executor> SchedulerPtr;
|
||||
|
||||
template <class T, size_t InlineObservers = 3> struct Observable;
|
||||
template <class T, size_t InlineObservers = 3> class Observable;
|
||||
template <class T> struct Observer;
|
||||
template <class T> struct Subject;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user