X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Futils%2Ftestapp%2Fuserspace-probe-elf-cxx-binary%2Fuserspace-probe-elf-cxx-binary.cpp;h=e135416367da19b2dfcf5ad07fb15ced1718153d;hb=69e98ad60c01ddfbfa6eb843960f77804173dd0f;hp=2e169c8fc4fc466d04ee70f0eb479250639d3924;hpb=f46376a14da2eb796690cb4e718e8b213839d6ea;p=lttng-tools.git diff --git a/tests/utils/testapp/userspace-probe-elf-cxx-binary/userspace-probe-elf-cxx-binary.cpp b/tests/utils/testapp/userspace-probe-elf-cxx-binary/userspace-probe-elf-cxx-binary.cpp index 2e169c8fc..e13541636 100644 --- a/tests/utils/testapp/userspace-probe-elf-cxx-binary/userspace-probe-elf-cxx-binary.cpp +++ b/tests/utils/testapp/userspace-probe-elf-cxx-binary/userspace-probe-elf-cxx-binary.cpp @@ -5,17 +5,17 @@ * */ -#include "test_class.h" +#include "test_class.hpp" volatile int not_a_function = 0; -void test_cxx_function() __attribute__ ((noinline)); +void test_cxx_function() __attribute__((noinline)); void test_cxx_function() { not_a_function += 1; } -int main(void) +int main() { test_class my_test_class; /* Call test function. */