clang-tidy: apply suggested fixes
[lttng-tools.git] / tests / utils / testapp / gen-ust-events-constructor / 03-tp-after-define.cpp
index fba3c262e0a18c44b058a2ba774096af2608d2e5..e39cd39030b386511eed60a9ca9b0f7283c33da2 100644 (file)
@@ -7,14 +7,14 @@
 #include "obj.h"
 #include "tp.h"
 
-void test_constructor3(void) __attribute__((constructor));
-void test_constructor3(void)
+void test_constructor3() __attribute__((constructor));
+void test_constructor3()
 {
        tracepoint(tp, constructor_c_across_units_after_define);
 }
 
-void test_destructor3(void) __attribute__((destructor));
-void test_destructor3(void)
+void test_destructor3() __attribute__((destructor));
+void test_destructor3()
 {
        tracepoint(tp, destructor_c_across_units_after_define);
 }
This page took 0.024128 seconds and 4 git commands to generate.