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