clang-tidy: add Chrome-inspired checks
[lttng-tools.git] / tests / utils / testapp / userspace-probe-elf-cxx-binary / userspace-probe-elf-cxx-binary.cpp
index 6b30717ae6140104e1f974d0d06a05f10d1e2363..e135416367da19b2dfcf5ad07fb15ced1718153d 100644 (file)
@@ -5,15 +5,17 @@
  *
  */
 
-#include "test_class.h"
+#include "test_class.hpp"
 
 volatile int not_a_function = 0;
-void __attribute__ ((noinline))  test_cxx_function()
+
+void test_cxx_function() __attribute__((noinline));
+void test_cxx_function()
 {
        not_a_function += 1;
 }
 
-int main(int argc, char *argv[])
+int main()
 {
        test_class my_test_class;
        /* Call test function. */
This page took 0.02373 seconds and 4 git commands to generate.