X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Futils%2Ftestapp%2Fgen-ust-events-constructor%2Fobj.cpp;h=430cfe3342e57a842a825a3f772f7c896e06f5d3;hb=09a872ef0b4e1432329aa42fecc61f50e9baa367;hp=948420165c946cf7dab445f679e3cc0a8c36b77e;hpb=cebde614e5805e89341ba75d276b4d3e2da7225f;p=lttng-tools.git diff --git a/tests/utils/testapp/gen-ust-events-constructor/obj.cpp b/tests/utils/testapp/gen-ust-events-constructor/obj.cpp index 948420165..430cfe334 100644 --- a/tests/utils/testapp/gen-ust-events-constructor/obj.cpp +++ b/tests/utils/testapp/gen-ust-events-constructor/obj.cpp @@ -6,7 +6,6 @@ */ #include "obj.h" -#include "tp-a.h" #include "tp-so.h" #include "tp.h" @@ -29,13 +28,3 @@ Objso::~Objso() { tracepoint(tp_so, destructor_cplusplus_provider_shared_library, msg); } - -Obja::Obja(const char *_msg) : msg(_msg) -{ - tracepoint(tp_a, constructor_cplusplus_provider_static_archive, msg); -} - -Obja::~Obja() -{ - tracepoint(tp_a, destructor_cplusplus_provider_static_archive, msg); -}