From fdeedabfd7a0175b2537aa1cf218615d94a22fc4 Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Fri, 24 Oct 2014 19:59:14 +0200 Subject: [PATCH] Fixed warning in Visual Studio --- test/Printers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Printers.cpp b/test/Printers.cpp index adf59f82..fc82357e 100644 --- a/test/Printers.cpp +++ b/test/Printers.cpp @@ -6,7 +6,7 @@ #include "Printers.hpp" -std::ostream& operator<<(std::ostream& os, const ArduinoJson::JsonValue& v) { +std::ostream& operator<<(std::ostream& os, const ArduinoJson::JsonValue&) { os << "JsonValue"; // TODO return os; } \ No newline at end of file