Commit abc4ccc5 authored by gabime's avatar gabime

Fix unused warning in example under gcc

parent 9cfdfc75
......@@ -112,7 +112,7 @@ int main(int, char*[])
// Example of user defined class with operator<<
class some_class {};
std::ostream& operator<<(std::ostream& os, const some_class& c) {
std::ostream& operator<<(std::ostream& os, const some_class&) {
return os << "some_class";
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment