diff options
| author | ruki <[email protected]> | 2024-03-13 23:51:23 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-03-13 23:51:23 +0800 |
| commit | 2fd001314c938457dfb7ff3ae74b1caec1302026 (patch) | |
| tree | f0995767563208dc89da8bc5cc3e1ee324fcb41b | |
| parent | 32b459404ccd966cfdb0ee1d625535afb8837120 (diff) | |
Update foo_impl.mpp
| -rw-r--r-- | tests/projects/c++/modules/partitions_implunit2/src/foo_impl.mpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/projects/c++/modules/partitions_implunit2/src/foo_impl.mpp b/tests/projects/c++/modules/partitions_implunit2/src/foo_impl.mpp index af4058b15..af8f1a1dd 100644 --- a/tests/projects/c++/modules/partitions_implunit2/src/foo_impl.mpp +++ b/tests/projects/c++/modules/partitions_implunit2/src/foo_impl.mpp @@ -5,6 +5,6 @@ module; // can only be imported by module Foo, and visibility of bar is only public to module Foo module Foo:Impl; -export void bar() { +void bar() { std::cout << "Hello world" << std::endl; } |
