Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MessageControl/MessageControl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ namespace Thunder {
, _outputDirector()
, _webSocketExporter()
, _callback(nullptr)
, _cleaning()
, _observer(*this)
, _service(nullptr)
, _dispatcherIdentifier(Messaging::MessageUnit::Instance().Identifier())
Expand Down
2 changes: 1 addition & 1 deletion MessageControl/MessageControl.h
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,7 @@ namespace Plugin {
OutputList _outputDirector;
Publishers::WebSocketOutput _webSocketExporter;
MessageControl::ICollect::ICallback* _callback;
Cleanups _cleaning;
Core::SinkType<Observer> _observer;
PluginHost::IShell* _service;
const string _dispatcherIdentifier;
Expand All @@ -475,7 +476,6 @@ namespace Plugin {
Messaging::TraceFactoryType<Core::Messaging::IStore::WarningReporting, Core::Messaging::TextMessage> _warningReportingFactory;
Messaging::TraceFactoryType<Core::Messaging::IStore::OperationalStream, Core::Messaging::TextMessage> _operationalStreamFactory;
Messaging::TraceFactoryType<Core::Messaging::IStore::Assert, Core::Messaging::TextMessage> _assertFactory;
Cleanups _cleaning;
};

} // namespace Plugin
Expand Down
Loading