From fe49272cae3d927e0760547b97052221c561f0d3 Mon Sep 17 00:00:00 2001 From: Andrew Melvin Date: Thu, 28 Jan 2016 20:47:55 +0200 Subject: [PATCH] Oops --- src/AsyncJson.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/AsyncJson.h b/src/AsyncJson.h index 481a27b..816bd3c 100644 --- a/src/AsyncJson.h +++ b/src/AsyncJson.h @@ -35,6 +35,7 @@ class ChunkPrint : public Print{ public: ChunkPrint(uint8_t* destination, size_t from, size_t len) : _destination(destination), _to_skip(from), _to_write(len), _pos{0} {} + virtual ~ChunkPrint(); size_t write(uint8_t c){ if (_to_skip > 0) { _to_skip--; @@ -59,7 +60,7 @@ class AsyncJsonResponse: public AsyncAbstractResponse { _contentType = "text/json"; _root = _jsonBuffer.createObject(); } - virtual ~AsyncJsonResponse() {} + ~AsyncJsonResponse() {} JsonVariant & getRoot() { return _root; } bool _sourceValid() { return _isValid; } void setLength() {