clang-tidy: apply suggested fixes
[lttng-tools.git] / tests / utils / testapp / gen-ust-events-constructor / 01-tp-before-define.cpp
index 52199240e908ec2f897120a12f479bd8d46cf4d9..6e0eaa3dfb395faa4c610b9dbba076f817ddb7f8 100644 (file)
@@ -7,14 +7,14 @@
 #include "obj.h"
 #include "tp.h"
 
-void test_constructor1(void) __attribute__((constructor));
-void test_constructor1(void)
+void test_constructor1() __attribute__((constructor));
+void test_constructor1()
 {
        tracepoint(tp, constructor_c_across_units_before_define);
 }
 
-void test_destructor1(void) __attribute__((destructor));
-void test_destructor1(void)
+void test_destructor1() __attribute__((destructor));
+void test_destructor1()
 {
        tracepoint(tp, destructor_c_across_units_before_define);
 }
This page took 0.023578 seconds and 4 git commands to generate.