mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-31 03:07:35 +02:00
Fixed error "Stream does not name a type" (issue #412)
This commit is contained in:
@ -7,6 +7,7 @@ HEAD
|
|||||||
* Fixed error when assigning a `volatile int` to a `JsonVariant` (issue #415)
|
* Fixed error when assigning a `volatile int` to a `JsonVariant` (issue #415)
|
||||||
* Fixed errors with Variable Length Arrays (issue #416)
|
* Fixed errors with Variable Length Arrays (issue #416)
|
||||||
* Fixed error when both `ARDUINOJSON_ENABLE_STD_STREAM` and `ARDUINOJSON_ENABLE_ARDUINO_STREAM` are set to `1`
|
* Fixed error when both `ARDUINOJSON_ENABLE_STD_STREAM` and `ARDUINOJSON_ENABLE_ARDUINO_STREAM` are set to `1`
|
||||||
|
* Fixed error "Stream does not name a type" (issue #412)
|
||||||
|
|
||||||
v5.8.0
|
v5.8.0
|
||||||
------
|
------
|
||||||
|
@ -7,6 +7,8 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <Stream.h>
|
||||||
|
|
||||||
#include "../TypeTraits/EnableIf.hpp"
|
#include "../TypeTraits/EnableIf.hpp"
|
||||||
#include "../TypeTraits/IsBaseOf.hpp"
|
#include "../TypeTraits/IsBaseOf.hpp"
|
||||||
#include "../TypeTraits/RemoveReference.hpp"
|
#include "../TypeTraits/RemoveReference.hpp"
|
||||||
|
Reference in New Issue
Block a user