diff options
| author | ruki <[email protected]> | 2021-07-15 22:58:21 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-07-15 22:58:21 +0800 |
| commit | ba4ebd5a676ad15d8d72fe4fefa4d949ea11bc68 (patch) | |
| tree | 817b50173948547f7e4b491da271918c67b8a5ff /tests/projects/c++/modules/inline_and_template | |
| parent | 8c1141aba414c07554179cb28687124514f6e770 (diff) | |
| parent | 942c32f448d9b8a850438aa2af1de2415b7ae872 (diff) | |
Merge pull request #1519 from aacirino/master
Added the correct support to build C++ projects that use modules
Diffstat (limited to 'tests/projects/c++/modules/inline_and_template')
3 files changed, 5 insertions, 7 deletions
diff --git a/tests/projects/c++/modules/inline_and_template/src/hello.mpp b/tests/projects/c++/modules/inline_and_template/src/hello.mpp index 1796f0b11..c36d54783 100644 --- a/tests/projects/c++/modules/inline_and_template/src/hello.mpp +++ b/tests/projects/c++/modules/inline_and_template/src/hello.mpp @@ -1,7 +1,7 @@ -// module; -#include <cstdio> export module hello; +#include <cstdio> + export namespace hello { inline void say_hello() { std::printf("hello world!\n"); diff --git a/tests/projects/c++/modules/inline_and_template/src/say.mpp b/tests/projects/c++/modules/inline_and_template/src/say.mpp index d09e14d28..b4d05a5f4 100644 --- a/tests/projects/c++/modules/inline_and_template/src/say.mpp +++ b/tests/projects/c++/modules/inline_and_template/src/say.mpp @@ -1,7 +1,7 @@ -// module; -#include <cstdio> export module say; +#include <cstdio> + export class say { public: template <int N> diff --git a/tests/projects/c++/modules/inline_and_template/xmake.lua b/tests/projects/c++/modules/inline_and_template/xmake.lua index c0722cccc..4810edb85 100644 --- a/tests/projects/c++/modules/inline_and_template/xmake.lua +++ b/tests/projects/c++/modules/inline_and_template/xmake.lua @@ -1,6 +1,4 @@ +set_languages("c++20") target("inline_and_template") set_kind("binary") add_files("src/*.cpp", "src/*.mpp") - set_languages("c++11") - - |
