Просмотр исходного кода

Fixed warning in Visual Studio

Benoit Blanchon 11 лет назад
Родитель
Сommit
fdeedabfd7
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      test/Printers.cpp

+ 1 - 1
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;
 }