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 60a3cc1 commit cd8ffc8Copy full SHA for cd8ffc8
erpc_c/infra/erpc_transport_arbitrator.hpp
@@ -185,6 +185,11 @@ class TransportArbitrator : public Transport
185
* @param[in] list Pending client list to remove.
186
*/
187
void freeClientList(PendingClientInfo *list);
188
+
189
+private:
190
+ // Disable copy ctor.
191
+ TransportArbitrator(const TransportArbitrator &other); /*!< Disable copy ctor. */
192
+ TransportArbitrator &operator=(const TransportArbitrator &other); /*!< Disable copy ctor. */
193
};
194
195
} // namespace erpc
0 commit comments