diff options
Diffstat (limited to 'tests/projects/precompiled_header_c++/src')
| -rw-r--r-- | tests/projects/precompiled_header_c++/src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/projects/precompiled_header_c++/src/main.cpp b/tests/projects/precompiled_header_c++/src/main.cpp index b152518bc..f0408cdf8 100644 --- a/tests/projects/precompiled_header_c++/src/main.cpp +++ b/tests/projects/precompiled_header_c++/src/main.cpp @@ -1,7 +1,7 @@ - -// main.cpp #include "header.h" -int main() { - return 0; +int main(int argc, char** argv) +{ + printf("hello xmake!\n"); + return 0; } |
