Skip to content

Commit c51bc36

Browse files
committed
1 parent f50e44f commit c51bc36

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

source/operators/binary_minus.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import std_module;
1919
OPERATORS_FORWARD(lhs) + -OPERATORS_FORWARD(rhs) \
2020
)
2121

22+
namespace {
2223
namespace operators_impl {
2324

2425
struct minus {
@@ -27,6 +28,7 @@ struct minus {
2728
};
2829

2930
} // namespace operators_impl
31+
} // namespace
3032

3133
namespace operators::binary {
3234

source/operators/unary_minus.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import std_module;
2121
0 - OPERATORS_FORWARD(value) \
2222
)
2323

24+
namespace {
2425
namespace operators_impl {
2526

2627
struct minus {
@@ -29,6 +30,7 @@ struct minus {
2930
};
3031

3132
} // namespace operators_impl
33+
} // namespace
3234

3335
namespace operators::unary {
3436

0 commit comments

Comments
 (0)