We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b832ffe commit c08802cCopy full SHA for c08802c
IntelPresentMon/CommonUtilities/log/ChannelFlusher.h
@@ -13,6 +13,12 @@ namespace pmon::util::log
13
public:
14
ChannelFlusher(std::weak_ptr<IEntrySink> pChan);
15
~ChannelFlusher();
16
+
17
+ ChannelFlusher(const ChannelFlusher&) = delete;
18
+ ChannelFlusher & operator=(const ChannelFlusher&) = delete;
19
+ ChannelFlusher(ChannelFlusher&&) = delete;
20
+ ChannelFlusher & operator=(ChannelFlusher&&) = delete;
21
22
private:
23
std::weak_ptr<IEntrySink> pChan_;
24
mt::Thread worker_;
0 commit comments