summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2024-04-02 00:57:23 +0800
committerruki <[email protected]>2024-04-02 00:57:23 +0800
commit8c9cd4bc8ce80bbf0c2dc56424c3e629c902dbba (patch)
tree4ff4343bcb086b2a2b76ff9842ebab4f68a7c758
parentf5d208c3aba4759bf2246d91a26d19d00603d2d1 (diff)
update test
-rw-r--r--tests/projects/other/native_module/src/main.cpp7
1 files 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 <iostream>
-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;
}