From f65d756bff8d4c5cbc15bd0322a2ae8e6b896a21 Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Tue, 29 Oct 2024 14:49:26 +0800 Subject: format * format * Minor test fixes * enable checking cpp format in ci --- tests/cpp-compiler/cpp-compile-shared-library.cpp | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'tests/cpp-compiler/cpp-compile-shared-library.cpp') diff --git a/tests/cpp-compiler/cpp-compile-shared-library.cpp b/tests/cpp-compiler/cpp-compile-shared-library.cpp index c802a57cd..a69e22899 100644 --- a/tests/cpp-compiler/cpp-compile-shared-library.cpp +++ b/tests/cpp-compiler/cpp-compile-shared-library.cpp @@ -1,21 +1,19 @@ -//TEST(smoke):CPP_COMPILER_SHARED_LIBRARY: +// TEST(smoke):CPP_COMPILER_SHARED_LIBRARY: -#include +#include #include +#include #include - -#include using namespace std; - + #if defined(_MSC_VER) -# define DLL_EXPORT __declspec(dllexport) +#define DLL_EXPORT __declspec(dllexport) #else -# define DLL_EXPORT __attribute__((__visibility__("default"))) -#endif - +#define DLL_EXPORT __attribute__((__visibility__("default"))) +#endif + extern "C" DLL_EXPORT int test(int intValue, const char* textValue, char* outTextValue) { strcpy(outTextValue, textValue); return intValue; } - -- cgit v1.2.3