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 5bd07f2 commit ee61d92Copy full SHA for ee61d92
redev_channel.h
@@ -87,7 +87,7 @@ class Channel {
87
virtual void EndReceiveCommunicationPhase() = 0;
88
virtual ~ChannelConcept() noexcept {}
89
};
90
- template <typename T> class ChannelModel : public ChannelConcept {
+ template <typename T> class ChannelModel final : public ChannelConcept {
91
public:
92
ChannelModel(T &&impl) : ChannelConcept(), impl_(std::forward<T>(impl)) {}
93
// since we don't have templated virtual functions, we convert the type to a
0 commit comments