summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/impl_unit
diff options
context:
space:
mode:
authorruki <[email protected]>2025-11-09 19:51:04 +0800
committerruki <[email protected]>2025-11-09 19:51:04 +0800
commit91f6ed08fe32e36d555129efa4afdd82113f0eb4 (patch)
tree2bfee23488c8479c83833677262ee83b9e362cbb /tests/projects/c++/modules/impl_unit
parentc89c94bf89e98c8e42e786aacc0b334a57474179 (diff)
format tests and templates
Diffstat (limited to 'tests/projects/c++/modules/impl_unit')
-rw-r--r--tests/projects/c++/modules/impl_unit/src/hello_impl.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/projects/c++/modules/impl_unit/src/hello_impl.cpp b/tests/projects/c++/modules/impl_unit/src/hello_impl.cpp
index eccfed5d3..fa17673ab 100644
--- a/tests/projects/c++/modules/impl_unit/src/hello_impl.cpp
+++ b/tests/projects/c++/modules/impl_unit/src/hello_impl.cpp
@@ -5,15 +5,15 @@ module hello;
using namespace std;
namespace hello {
- void say_hi() {
- cout << "hello hi!" << endl;
- }
+void say_hi() {
+ cout << "hello hi!" << endl;
+}
- void say_hello() {
- cout << "hello world!" << endl;
- }
+void say_hello() {
+ cout << "hello world!" << endl;
+}
- void say_xz() {
- cout << "hello xz!" << endl;
- }
+void say_xz() {
+ cout << "hello xz!" << endl;
}
+} // namespace hello