From e85a3cc33be2be6e4a51286648db9abe754ae6b7 Mon Sep 17 00:00:00 2001 From: gabime Date: Wed, 28 Jan 2015 23:49:52 +0200 Subject: [PATCH] removed warning from example.cpp --- example/example.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/example.cpp b/example/example.cpp index be1789c7..af76966e 100644 --- a/example/example.cpp +++ b/example/example.cpp @@ -94,7 +94,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) { return os << "some_class"; } +std::ostream& operator<<(std::ostream& os, const some_class&) { return os << "some_class"; } void custom_class_example() {