Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'examples/all_features')
-rw-r--r--examples/all_features/assertion_macros.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/all_features/assertion_macros.cpp b/examples/all_features/assertion_macros.cpp
index 32e89da1..c10321c7 100644
--- a/examples/all_features/assertion_macros.cpp
+++ b/examples/all_features/assertion_macros.cpp
@@ -4,7 +4,7 @@ namespace A {
};
}
-bool operator==(const A::Bar& lhs, const A::Bar& rhs) {
+static bool operator==(const A::Bar& lhs, const A::Bar& rhs) {
return lhs.i == rhs.i;
}