clang-tidy: apply suggested fixes
[lttng-tools.git] / tests / utils / testapp / gen-ust-events-constructor / 05-tp-after-provider.cpp
index 17d3a6e24cb08b92867f6d3d3487b00052c882d9..338304b43016a4f59fc1f54462c3f8d56aa13fdc 100644 (file)
@@ -7,14 +7,14 @@
 #include "obj.h"
 #include "tp.h"
 
-void test_constructor5(void) __attribute__((constructor));
-void test_constructor5(void)
+void test_constructor5() __attribute__((constructor));
+void test_constructor5()
 {
        tracepoint(tp, constructor_c_across_units_after_provider);
 }
 
-void test_destructor5(void) __attribute__((destructor));
-void test_destructor5(void)
+void test_destructor5() __attribute__((destructor));
+void test_destructor5()
 {
        tracepoint(tp, destructor_c_across_units_after_provider);
 }
This page took 0.022994 seconds and 4 git commands to generate.