Skip to content
Snippets Groups Projects
Commit 6074f3d5 authored by Scott Snyder's avatar Scott Snyder Committed by Frank Winklmeier
Browse files

RPC_CondCabling: Fix clang warning.

RPC_CondCabling: Fix clang warning.

RDOindex::operator= cannot be defaulted due to the presence of a 
reference member.
parent c4e4a53a
No related merge requests found
......@@ -116,7 +116,7 @@ public:
RDOindex(const RDOindex&) = default;
~RDOindex() = default;
RDOindex& operator=(const RDOindex&) = default;
RDOindex& operator=(const RDOindex&) = delete;
operator bool() const;
bool operator!() const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment