clang-tidy: apply suggested fixes
[lttng-tools.git] / tests / utils / testapp / gen-ust-events-constructor / obj-a.h
index cd341d8c79260bc218d8a9f2686ff09ece6f5949..85eccde8f373f514abf6aad77f83fa33c82396a2 100644 (file)
 
 struct Obj {
        const char *msg;
-       Obj(const char *msg);
+       explicit Obj(const char *msg);
        ~Obj();
 };
 
 struct Obja {
        const char *msg;
-       Obja(const char *msg);
+       explicit Obja(const char *msg);
        ~Obja();
 };
 
This page took 0.022402 seconds and 4 git commands to generate.