Fixed warning in Visual Studio

This commit is contained in:
Benoit Blanchon
2014-10-24 19:59:14 +02:00
parent 582216e004
commit fdeedabfd7

View File

@ -6,7 +6,7 @@
#include "Printers.hpp" #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 os << "JsonValue"; // TODO
return os; return os;
} }