From 8c9cd4bc8ce80bbf0c2dc56424c3e629c902dbba Mon Sep 17 00:00:00 2001 From: ruki Date: Tue, 2 Apr 2024 00:57:23 +0800 Subject: update test --- tests/projects/other/native_module/src/main.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tests/projects/other/native_module/src/main.cpp b/tests/projects/other/native_module/src/main.cpp index 7c435d251..7c775d288 100644 --- a/tests/projects/other/native_module/src/main.cpp +++ b/tests/projects/other/native_module/src/main.cpp @@ -1,9 +1,6 @@ #include -using namespace std; - -int main(int argc, char** argv) -{ - cout << "hello world!" << endl; +int main(int argc, char** argv) { + std::cout << "hello world!" << std::endl; return 0; } -- cgit v1.3.1