jpeach commented on code in PR #10321:
URL: https://github.com/apache/trafficserver/pull/10321#discussion_r1314100491
##########
include/ts/DbgCtl.h:
##########
@@ -90,6 +90,10 @@ class DbgCtl
static void print(char const *tag, char const *file, char const *function,
int line, char const *fmt_str, ...)
TS_PRINTFLIKE(5, 6);
+ // No copying/moving.
+ DbgCtl(DbgCtl const &) = delete;
Review Comment:
Do we also need to delete `DbgCtl(DbgCtl &&)` these days?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]