Fixed error "Stream does not name a type" (issue #412)

This commit is contained in:
Benoit Blanchon
2017-01-15 16:23:20 +01:00
parent ec6cbc5135
commit 567157b005
2 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,7 @@ HEAD
* Fixed error when assigning a `volatile int` to a `JsonVariant` (issue #415)
* 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 "Stream does not name a type" (issue #412)
v5.8.0
------

View File

@ -7,6 +7,8 @@
#pragma once
#include <Stream.h>
#include "../TypeTraits/EnableIf.hpp"
#include "../TypeTraits/IsBaseOf.hpp"
#include "../TypeTraits/RemoveReference.hpp"