Ported test of Gbathree's bug

This commit is contained in:
Benoit Blanchon
2014-11-03 14:38:46 +01:00
parent 7cdf7b1769
commit a8d3e9997e
3 changed files with 221 additions and 0 deletions

13
test/Printers.cpp Normal file
View File

@ -0,0 +1,13 @@
// Copyright Benoit Blanchon 2014
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
#include "Printers.hpp"
std::ostream& ArduinoJson::operator<<(std::ostream& os,
const ArduinoJson::JsonValue&) {
os << "JsonValue"; // TODO
return os;
}