From c3f71c1a9936f90f10cb051892608331c2300fb4 Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Fri, 15 Feb 2019 13:31:46 +0100 Subject: [PATCH] Updated copyright year to 2019 --- ArduinoJson.h | 2 +- CMakeLists.txt | 2 +- LICENSE.md | 2 +- examples/JsonConfigFile/JsonConfigFile.ino | 2 +- examples/JsonGeneratorExample/JsonGeneratorExample.ino | 2 +- examples/JsonHttpClient/JsonHttpClient.ino | 2 +- examples/JsonParserExample/JsonParserExample.ino | 2 +- examples/JsonServer/JsonServer.ino | 2 +- examples/JsonUdpBeacon/JsonUdpBeacon.ino | 2 +- examples/MsgPackParser/MsgPackParser.ino | 2 +- examples/ProgmemExample/ProgmemExample.ino | 2 +- examples/StringExample/StringExample.ino | 2 +- fuzzing/CMakeLists.txt | 2 +- fuzzing/fuzzer_main.cpp | 2 +- scripts/wandbox/JsonGeneratorExample.cpp | 2 +- scripts/wandbox/JsonParserExample.cpp | 2 +- scripts/wandbox/MsgPackParserExample.cpp | 2 +- src/ArduinoJson.h | 2 +- src/ArduinoJson.hpp | 2 +- src/ArduinoJson/Array/ArrayFunctions.hpp | 2 +- src/ArduinoJson/Array/ArrayImpl.hpp | 2 +- src/ArduinoJson/Array/ArrayIterator.hpp | 2 +- src/ArduinoJson/Array/ArrayRef.hpp | 2 +- src/ArduinoJson/Array/ArrayShortcuts.hpp | 2 +- src/ArduinoJson/Array/ElementProxy.hpp | 2 +- src/ArduinoJson/Collection/CollectionData.hpp | 2 +- src/ArduinoJson/Collection/CollectionImpl.hpp | 2 +- src/ArduinoJson/Configuration.hpp | 2 +- src/ArduinoJson/Deserialization/ArduinoStreamReader.hpp | 2 +- src/ArduinoJson/Deserialization/CharPointerReader.hpp | 2 +- src/ArduinoJson/Deserialization/DeserializationError.hpp | 2 +- src/ArduinoJson/Deserialization/FlashStringReader.hpp | 2 +- src/ArduinoJson/Deserialization/IteratorReader.hpp | 2 +- src/ArduinoJson/Deserialization/NestingLimit.hpp | 2 +- src/ArduinoJson/Deserialization/StdStreamReader.hpp | 2 +- src/ArduinoJson/Deserialization/deserialize.hpp | 2 +- src/ArduinoJson/Document/DynamicJsonDocument.hpp | 5 ++--- src/ArduinoJson/Document/JsonDocument.hpp | 2 +- src/ArduinoJson/Document/StaticJsonDocument.hpp | 2 +- src/ArduinoJson/Json/EscapeSequence.hpp | 2 +- src/ArduinoJson/Json/JsonDeserializer.hpp | 2 +- src/ArduinoJson/Json/JsonSerializer.hpp | 2 +- src/ArduinoJson/Json/PrettyJsonSerializer.hpp | 2 +- src/ArduinoJson/Json/TextFormatter.hpp | 2 +- src/ArduinoJson/Json/Utf8.hpp | 2 +- src/ArduinoJson/Memory/Alignment.hpp | 2 +- src/ArduinoJson/Memory/MemoryPool.hpp | 2 +- src/ArduinoJson/Memory/StringBuilder.hpp | 2 +- src/ArduinoJson/Memory/StringSlot.hpp | 2 +- src/ArduinoJson/Misc/SerializedValue.hpp | 2 +- src/ArduinoJson/Misc/Visitable.hpp | 2 +- src/ArduinoJson/MsgPack/MsgPackDeserializer.hpp | 2 +- src/ArduinoJson/MsgPack/MsgPackSerializer.hpp | 2 +- src/ArduinoJson/MsgPack/endianess.hpp | 2 +- src/ArduinoJson/MsgPack/ieee754.hpp | 2 +- src/ArduinoJson/Namespace.hpp | 2 +- src/ArduinoJson/Numbers/Float.hpp | 2 +- src/ArduinoJson/Numbers/FloatParts.hpp | 2 +- src/ArduinoJson/Numbers/FloatTraits.hpp | 2 +- src/ArduinoJson/Numbers/Integer.hpp | 2 +- src/ArduinoJson/Numbers/isFloat.hpp | 2 +- src/ArduinoJson/Numbers/isInteger.hpp | 2 +- src/ArduinoJson/Numbers/parseFloat.hpp | 2 +- src/ArduinoJson/Numbers/parseInteger.hpp | 2 +- src/ArduinoJson/Object/MemberProxy.hpp | 2 +- src/ArduinoJson/Object/ObjectFunctions.hpp | 2 +- src/ArduinoJson/Object/ObjectImpl.hpp | 2 +- src/ArduinoJson/Object/ObjectIterator.hpp | 2 +- src/ArduinoJson/Object/ObjectRef.hpp | 2 +- src/ArduinoJson/Object/ObjectShortcuts.hpp | 2 +- src/ArduinoJson/Object/Pair.hpp | 2 +- src/ArduinoJson/Operators/VariantCasts.hpp | 2 +- src/ArduinoJson/Operators/VariantComparisons.hpp | 2 +- src/ArduinoJson/Operators/VariantOperators.hpp | 2 +- src/ArduinoJson/Operators/VariantOr.hpp | 2 +- src/ArduinoJson/Operators/VariantShortcuts.hpp | 2 +- src/ArduinoJson/Polyfills/assert.hpp | 2 +- src/ArduinoJson/Polyfills/attributes.hpp | 2 +- src/ArduinoJson/Polyfills/ctype.hpp | 2 +- src/ArduinoJson/Polyfills/math.hpp | 2 +- src/ArduinoJson/Polyfills/mpl/max.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits/conditional.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits/enable_if.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits/integral_constant.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits/is_array.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits/is_base_of.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits/is_const.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits/is_floating_point.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits/is_integral.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits/is_same.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits/is_signed.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits/is_unsigned.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits/remove_const.hpp | 2 +- src/ArduinoJson/Polyfills/type_traits/remove_reference.hpp | 2 +- src/ArduinoJson/Polyfills/utility.hpp | 2 +- src/ArduinoJson/Serialization/DummyWriter.hpp | 2 +- src/ArduinoJson/Serialization/DynamicStringWriter.hpp | 2 +- src/ArduinoJson/Serialization/StaticStringWriter.hpp | 2 +- src/ArduinoJson/Serialization/StreamWriter.hpp | 2 +- src/ArduinoJson/Serialization/measure.hpp | 2 +- src/ArduinoJson/Serialization/serialize.hpp | 2 +- src/ArduinoJson/StringStorage/StringCopier.hpp | 2 +- src/ArduinoJson/StringStorage/StringMover.hpp | 2 +- src/ArduinoJson/StringStorage/StringStorage.hpp | 2 +- src/ArduinoJson/Strings/ArduinoStringAdapter.hpp | 2 +- src/ArduinoJson/Strings/ConstRamStringAdapter.hpp | 2 +- src/ArduinoJson/Strings/FlashStringAdapter.hpp | 2 +- src/ArduinoJson/Strings/RamStringAdapter.hpp | 2 +- src/ArduinoJson/Strings/SizedFlashStringAdapter.hpp | 2 +- src/ArduinoJson/Strings/SizedRamStringAdapter.hpp | 2 +- src/ArduinoJson/Strings/StlStringAdapter.hpp | 2 +- src/ArduinoJson/Strings/String.hpp | 2 +- src/ArduinoJson/Strings/StringAdapters.hpp | 2 +- src/ArduinoJson/Variant/SlotFunctions.hpp | 2 +- src/ArduinoJson/Variant/VariantAs.hpp | 2 +- src/ArduinoJson/Variant/VariantAsImpl.hpp | 2 +- src/ArduinoJson/Variant/VariantContent.hpp | 2 +- src/ArduinoJson/Variant/VariantData.hpp | 2 +- src/ArduinoJson/Variant/VariantFunctions.hpp | 2 +- src/ArduinoJson/Variant/VariantImpl.hpp | 2 +- src/ArduinoJson/Variant/VariantRef.hpp | 2 +- src/ArduinoJson/Variant/VariantSlot.hpp | 2 +- src/ArduinoJson/Variant/VariantTo.hpp | 2 +- src/ArduinoJson/version.hpp | 2 +- test/CMakeLists.txt | 2 +- test/ElementProxy/CMakeLists.txt | 2 +- test/ElementProxy/add.cpp | 2 +- test/ElementProxy/set.cpp | 2 +- test/IntegrationTests/CMakeLists.txt | 2 +- test/IntegrationTests/gbathree.cpp | 2 +- test/IntegrationTests/issue772.cpp | 2 +- test/IntegrationTests/round_trip.cpp | 2 +- test/JsonArray/CMakeLists.txt | 2 +- test/JsonArray/add.cpp | 2 +- test/JsonArray/copyFrom.cpp | 2 +- test/JsonArray/copyTo.cpp | 2 +- test/JsonArray/createNested.cpp | 2 +- test/JsonArray/equals.cpp | 2 +- test/JsonArray/get.cpp | 2 +- test/JsonArray/isNull.cpp | 2 +- test/JsonArray/iterator.cpp | 2 +- test/JsonArray/memoryUsage.cpp | 2 +- test/JsonArray/nesting.cpp | 2 +- test/JsonArray/remove.cpp | 2 +- test/JsonArray/size.cpp | 2 +- test/JsonArray/std_string.cpp | 2 +- test/JsonArray/subscript.cpp | 2 +- test/JsonArray/undefined.cpp | 2 +- test/JsonDeserializer/CMakeLists.txt | 2 +- test/JsonDeserializer/DeserializationError.cpp | 2 +- test/JsonDeserializer/deserializeJsonArray.cpp | 2 +- test/JsonDeserializer/deserializeJsonArrayStatic.cpp | 2 +- test/JsonDeserializer/deserializeJsonObject.cpp | 2 +- test/JsonDeserializer/deserializeJsonObjectStatic.cpp | 2 +- test/JsonDeserializer/deserializeJsonString.cpp | 2 +- test/JsonDeserializer/deserializeJsonValue.cpp | 2 +- test/JsonDeserializer/input_types.cpp | 2 +- test/JsonDeserializer/nestingLimit.cpp | 2 +- test/JsonDocument/CMakeLists.txt | 2 +- test/JsonDocument/DynamicJsonDocument.cpp | 2 +- test/JsonDocument/StaticJsonDocument.cpp | 2 +- test/JsonDocument/add.cpp | 2 +- test/JsonDocument/createNested.cpp | 2 +- test/JsonDocument/isNull.cpp | 2 +- test/JsonDocument/nesting.cpp | 2 +- test/JsonDocument/subscript.cpp | 2 +- test/JsonObject/CMakeLists.txt | 2 +- test/JsonObject/containsKey.cpp | 2 +- test/JsonObject/copy.cpp | 2 +- test/JsonObject/createNestedArray.cpp | 2 +- test/JsonObject/createNestedObject.cpp | 2 +- test/JsonObject/equals.cpp | 2 +- test/JsonObject/invalid.cpp | 2 +- test/JsonObject/isNull.cpp | 2 +- test/JsonObject/iterator.cpp | 2 +- test/JsonObject/memoryUsage.cpp | 2 +- test/JsonObject/nesting.cpp | 2 +- test/JsonObject/remove.cpp | 2 +- test/JsonObject/size.cpp | 2 +- test/JsonObject/std_string.cpp | 2 +- test/JsonObject/subscript.cpp | 2 +- test/JsonSerializer/CMakeLists.txt | 2 +- test/JsonSerializer/JsonArray.cpp | 2 +- test/JsonSerializer/JsonArrayPretty.cpp | 2 +- test/JsonSerializer/JsonObject.cpp | 2 +- test/JsonSerializer/JsonObjectPretty.cpp | 2 +- test/JsonSerializer/JsonVariant.cpp | 2 +- test/JsonSerializer/std_stream.cpp | 2 +- test/JsonSerializer/std_string.cpp | 2 +- test/JsonVariant/CMakeLists.txt | 2 +- test/JsonVariant/add.cpp | 2 +- test/JsonVariant/as.cpp | 2 +- test/JsonVariant/compare.cpp | 2 +- test/JsonVariant/copy.cpp | 2 +- test/JsonVariant/createNested.cpp | 2 +- test/JsonVariant/get.cpp | 2 +- test/JsonVariant/is.cpp | 2 +- test/JsonVariant/isnull.cpp | 2 +- test/JsonVariant/memoryUsage.cpp | 2 +- test/JsonVariant/misc.cpp | 2 +- test/JsonVariant/nesting.cpp | 2 +- test/JsonVariant/or.cpp | 2 +- test/JsonVariant/set.cpp | 2 +- test/JsonVariant/subscript.cpp | 2 +- test/JsonVariant/types.cpp | 2 +- test/JsonVariant/undefined.cpp | 2 +- test/MemberProxy/CMakeLists.txt | 2 +- test/MemberProxy/add.cpp | 2 +- test/MemberProxy/set.cpp | 2 +- test/MemberProxy/subscript.cpp | 2 +- test/MemoryPool/CMakeLists.txt | 2 +- test/MemoryPool/StringBuilder.cpp | 2 +- test/MemoryPool/allocString.cpp | 2 +- test/MemoryPool/allocVariant.cpp | 2 +- test/MemoryPool/clear.cpp | 2 +- test/MemoryPool/size.cpp | 2 +- test/Misc/CMakeLists.txt | 2 +- test/Misc/FloatParts.cpp | 2 +- test/Misc/StringWriter.cpp | 2 +- test/Misc/TypeTraits.cpp | 2 +- test/Misc/unsigned_char.cpp | 2 +- test/Misc/version.cpp | 2 +- test/MixedConfiguration/CMakeLists.txt | 2 +- test/MsgPackDeserializer/CMakeLists.txt | 2 +- test/MsgPackDeserializer/deserializeArray.cpp | 2 +- test/MsgPackDeserializer/deserializeObject.cpp | 2 +- test/MsgPackDeserializer/deserializeStaticVariant.cpp | 2 +- test/MsgPackDeserializer/deserializeVariant.cpp | 2 +- test/MsgPackDeserializer/doubleToFloat.cpp | 2 +- test/MsgPackDeserializer/incompleteInput.cpp | 2 +- test/MsgPackDeserializer/input_types.cpp | 2 +- test/MsgPackDeserializer/nestingLimit.cpp | 2 +- test/MsgPackDeserializer/notSupported.cpp | 2 +- test/MsgPackSerializer/CMakeLists.txt | 2 +- test/MsgPackSerializer/destination_types.cpp | 2 +- test/MsgPackSerializer/measure.cpp | 2 +- test/MsgPackSerializer/serializeArray.cpp | 2 +- test/MsgPackSerializer/serializeObject.cpp | 2 +- test/MsgPackSerializer/serializeVariant.cpp | 2 +- test/Numbers/CMakeLists.txt | 2 +- test/Numbers/isFloat.cpp | 2 +- test/Numbers/isInteger.cpp | 2 +- test/Numbers/parseFloat.cpp | 2 +- test/Numbers/parseInteger.cpp | 2 +- test/TextFormatter/CMakeLists.txt | 2 +- test/TextFormatter/writeFloat.cpp | 2 +- test/TextFormatter/writeString.cpp | 2 +- third-party/catch/CMakeLists.txt | 2 +- third-party/catch/catch.cpp | 2 +- 250 files changed, 251 insertions(+), 252 deletions(-) diff --git a/ArduinoJson.h b/ArduinoJson.h index 9f78b9f1..d69f4791 100644 --- a/ArduinoJson.h +++ b/ArduinoJson.h @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include "src/ArduinoJson.h" diff --git a/CMakeLists.txt b/CMakeLists.txt index 1bb4c031..1ef4459f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License cmake_minimum_required(VERSION 3.0) diff --git a/LICENSE.md b/LICENSE.md index 247c5084..b5c35fc4 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,7 +1,7 @@ The MIT License (MIT) --------------------- -Copyright © 2014-2018 Benoit BLANCHON +Copyright © 2014-2019 Benoit BLANCHON Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/examples/JsonConfigFile/JsonConfigFile.ino b/examples/JsonConfigFile/JsonConfigFile.ino index 1b74947a..4ab3d5d5 100644 --- a/examples/JsonConfigFile/JsonConfigFile.ino +++ b/examples/JsonConfigFile/JsonConfigFile.ino @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License // // This example shows how to store your project configuration in a file. diff --git a/examples/JsonGeneratorExample/JsonGeneratorExample.ino b/examples/JsonGeneratorExample/JsonGeneratorExample.ino index 2653f148..214e7ac4 100644 --- a/examples/JsonGeneratorExample/JsonGeneratorExample.ino +++ b/examples/JsonGeneratorExample/JsonGeneratorExample.ino @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License // // This example shows how to generate a JSON document with ArduinoJson. diff --git a/examples/JsonHttpClient/JsonHttpClient.ino b/examples/JsonHttpClient/JsonHttpClient.ino index 305cc767..bd2b682f 100644 --- a/examples/JsonHttpClient/JsonHttpClient.ino +++ b/examples/JsonHttpClient/JsonHttpClient.ino @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License // // This example shows how to parse a JSON document in an HTTP response. diff --git a/examples/JsonParserExample/JsonParserExample.ino b/examples/JsonParserExample/JsonParserExample.ino index 4b578bdf..1be15b50 100644 --- a/examples/JsonParserExample/JsonParserExample.ino +++ b/examples/JsonParserExample/JsonParserExample.ino @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License // // This example shows how to deserialize a JSON document with ArduinoJson. diff --git a/examples/JsonServer/JsonServer.ino b/examples/JsonServer/JsonServer.ino index 94763d86..7efbb3a5 100644 --- a/examples/JsonServer/JsonServer.ino +++ b/examples/JsonServer/JsonServer.ino @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License // // This example shows how to implement an HTTP server that sends a JSON document diff --git a/examples/JsonUdpBeacon/JsonUdpBeacon.ino b/examples/JsonUdpBeacon/JsonUdpBeacon.ino index 1d2f99b3..3453a140 100644 --- a/examples/JsonUdpBeacon/JsonUdpBeacon.ino +++ b/examples/JsonUdpBeacon/JsonUdpBeacon.ino @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License // // This example shows how to send a JSON document to a UDP socket. diff --git a/examples/MsgPackParser/MsgPackParser.ino b/examples/MsgPackParser/MsgPackParser.ino index 9f9a7749..5dda5bd1 100644 --- a/examples/MsgPackParser/MsgPackParser.ino +++ b/examples/MsgPackParser/MsgPackParser.ino @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License // // This example shows how to deserialize a MessagePack document with diff --git a/examples/ProgmemExample/ProgmemExample.ino b/examples/ProgmemExample/ProgmemExample.ino index 6c899faa..08a58d95 100644 --- a/examples/ProgmemExample/ProgmemExample.ino +++ b/examples/ProgmemExample/ProgmemExample.ino @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License // // This example shows the different ways you can use Flash strings with diff --git a/examples/StringExample/StringExample.ino b/examples/StringExample/StringExample.ino index b4cd3297..96f03bb9 100644 --- a/examples/StringExample/StringExample.ino +++ b/examples/StringExample/StringExample.ino @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License // // This example shows the different ways you can use String with ArduinoJson. diff --git a/fuzzing/CMakeLists.txt b/fuzzing/CMakeLists.txt index 58fee0b8..5d5a268a 100644 --- a/fuzzing/CMakeLists.txt +++ b/fuzzing/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License if(MSVC) diff --git a/fuzzing/fuzzer_main.cpp b/fuzzing/fuzzer_main.cpp index a4a0f455..5dc7916a 100644 --- a/fuzzing/fuzzer_main.cpp +++ b/fuzzing/fuzzer_main.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License // This file is NOT use by Google's OSS fuzz diff --git a/scripts/wandbox/JsonGeneratorExample.cpp b/scripts/wandbox/JsonGeneratorExample.cpp index 75b4022d..b83e5c9c 100644 --- a/scripts/wandbox/JsonGeneratorExample.cpp +++ b/scripts/wandbox/JsonGeneratorExample.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License // // This example shows how to generate a JSON document with ArduinoJson. diff --git a/scripts/wandbox/JsonParserExample.cpp b/scripts/wandbox/JsonParserExample.cpp index 93ad3426..d5581a4a 100644 --- a/scripts/wandbox/JsonParserExample.cpp +++ b/scripts/wandbox/JsonParserExample.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License // // This example shows how to deserialize a JSON document with ArduinoJson. diff --git a/scripts/wandbox/MsgPackParserExample.cpp b/scripts/wandbox/MsgPackParserExample.cpp index 47c2d879..fc5a5539 100644 --- a/scripts/wandbox/MsgPackParserExample.cpp +++ b/scripts/wandbox/MsgPackParserExample.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License // // This example shows how to generate a JSON document with ArduinoJson. diff --git a/src/ArduinoJson.h b/src/ArduinoJson.h index 3782aeab..3e29f397 100644 --- a/src/ArduinoJson.h +++ b/src/ArduinoJson.h @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson.hpp b/src/ArduinoJson.hpp index b056ea73..8762ad99 100644 --- a/src/ArduinoJson.hpp +++ b/src/ArduinoJson.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Array/ArrayFunctions.hpp b/src/ArduinoJson/Array/ArrayFunctions.hpp index f13984a6..ec0dedd4 100644 --- a/src/ArduinoJson/Array/ArrayFunctions.hpp +++ b/src/ArduinoJson/Array/ArrayFunctions.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Array/ArrayImpl.hpp b/src/ArduinoJson/Array/ArrayImpl.hpp index cc149f29..c8ca0c5e 100644 --- a/src/ArduinoJson/Array/ArrayImpl.hpp +++ b/src/ArduinoJson/Array/ArrayImpl.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Array/ArrayIterator.hpp b/src/ArduinoJson/Array/ArrayIterator.hpp index 84b5bfb0..c1d6096f 100644 --- a/src/ArduinoJson/Array/ArrayIterator.hpp +++ b/src/ArduinoJson/Array/ArrayIterator.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Array/ArrayRef.hpp b/src/ArduinoJson/Array/ArrayRef.hpp index 7d1e06b4..9bb353fe 100644 --- a/src/ArduinoJson/Array/ArrayRef.hpp +++ b/src/ArduinoJson/Array/ArrayRef.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Array/ArrayShortcuts.hpp b/src/ArduinoJson/Array/ArrayShortcuts.hpp index c2fcbc4d..94eec35d 100644 --- a/src/ArduinoJson/Array/ArrayShortcuts.hpp +++ b/src/ArduinoJson/Array/ArrayShortcuts.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Array/ElementProxy.hpp b/src/ArduinoJson/Array/ElementProxy.hpp index 26128571..597e8c00 100644 --- a/src/ArduinoJson/Array/ElementProxy.hpp +++ b/src/ArduinoJson/Array/ElementProxy.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Collection/CollectionData.hpp b/src/ArduinoJson/Collection/CollectionData.hpp index 34bc4f67..6b37d533 100644 --- a/src/ArduinoJson/Collection/CollectionData.hpp +++ b/src/ArduinoJson/Collection/CollectionData.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Collection/CollectionImpl.hpp b/src/ArduinoJson/Collection/CollectionImpl.hpp index d7a7e4d5..42d734dc 100644 --- a/src/ArduinoJson/Collection/CollectionImpl.hpp +++ b/src/ArduinoJson/Collection/CollectionImpl.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Configuration.hpp b/src/ArduinoJson/Configuration.hpp index 6f08fe83..1b9dd9fc 100644 --- a/src/ArduinoJson/Configuration.hpp +++ b/src/ArduinoJson/Configuration.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Deserialization/ArduinoStreamReader.hpp b/src/ArduinoJson/Deserialization/ArduinoStreamReader.hpp index 9f12ddbe..e3591c98 100644 --- a/src/ArduinoJson/Deserialization/ArduinoStreamReader.hpp +++ b/src/ArduinoJson/Deserialization/ArduinoStreamReader.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Deserialization/CharPointerReader.hpp b/src/ArduinoJson/Deserialization/CharPointerReader.hpp index 63811086..6a35153c 100644 --- a/src/ArduinoJson/Deserialization/CharPointerReader.hpp +++ b/src/ArduinoJson/Deserialization/CharPointerReader.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Deserialization/DeserializationError.hpp b/src/ArduinoJson/Deserialization/DeserializationError.hpp index 0bfce9ee..8707b3b0 100644 --- a/src/ArduinoJson/Deserialization/DeserializationError.hpp +++ b/src/ArduinoJson/Deserialization/DeserializationError.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Deserialization/FlashStringReader.hpp b/src/ArduinoJson/Deserialization/FlashStringReader.hpp index e9fd57e6..015b4806 100644 --- a/src/ArduinoJson/Deserialization/FlashStringReader.hpp +++ b/src/ArduinoJson/Deserialization/FlashStringReader.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Deserialization/IteratorReader.hpp b/src/ArduinoJson/Deserialization/IteratorReader.hpp index ce33c3a8..a8d425da 100644 --- a/src/ArduinoJson/Deserialization/IteratorReader.hpp +++ b/src/ArduinoJson/Deserialization/IteratorReader.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Deserialization/NestingLimit.hpp b/src/ArduinoJson/Deserialization/NestingLimit.hpp index 64e57173..f1f4a5bc 100644 --- a/src/ArduinoJson/Deserialization/NestingLimit.hpp +++ b/src/ArduinoJson/Deserialization/NestingLimit.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Deserialization/StdStreamReader.hpp b/src/ArduinoJson/Deserialization/StdStreamReader.hpp index 2db44194..b1187c11 100644 --- a/src/ArduinoJson/Deserialization/StdStreamReader.hpp +++ b/src/ArduinoJson/Deserialization/StdStreamReader.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Deserialization/deserialize.hpp b/src/ArduinoJson/Deserialization/deserialize.hpp index 5177edfb..112d0823 100644 --- a/src/ArduinoJson/Deserialization/deserialize.hpp +++ b/src/ArduinoJson/Deserialization/deserialize.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Document/DynamicJsonDocument.hpp b/src/ArduinoJson/Document/DynamicJsonDocument.hpp index 19b8c976..a52f6509 100644 --- a/src/ArduinoJson/Document/DynamicJsonDocument.hpp +++ b/src/ArduinoJson/Document/DynamicJsonDocument.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once @@ -12,8 +12,7 @@ namespace ARDUINOJSON_NAMESPACE { class DynamicJsonDocument : public JsonDocument { public: - explicit DynamicJsonDocument(size_t capa) - : JsonDocument(allocPool(capa)) {} + explicit DynamicJsonDocument(size_t capa) : JsonDocument(allocPool(capa)) {} DynamicJsonDocument(const DynamicJsonDocument& src) : JsonDocument(allocPool(src.memoryUsage())) { diff --git a/src/ArduinoJson/Document/JsonDocument.hpp b/src/ArduinoJson/Document/JsonDocument.hpp index 032c4d17..7b9ffef9 100644 --- a/src/ArduinoJson/Document/JsonDocument.hpp +++ b/src/ArduinoJson/Document/JsonDocument.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Document/StaticJsonDocument.hpp b/src/ArduinoJson/Document/StaticJsonDocument.hpp index a7a58296..5de4da5a 100644 --- a/src/ArduinoJson/Document/StaticJsonDocument.hpp +++ b/src/ArduinoJson/Document/StaticJsonDocument.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Json/EscapeSequence.hpp b/src/ArduinoJson/Json/EscapeSequence.hpp index b2ace9a7..cb1792cf 100644 --- a/src/ArduinoJson/Json/EscapeSequence.hpp +++ b/src/ArduinoJson/Json/EscapeSequence.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Json/JsonDeserializer.hpp b/src/ArduinoJson/Json/JsonDeserializer.hpp index f0bdfb0c..2ca85d1d 100644 --- a/src/ArduinoJson/Json/JsonDeserializer.hpp +++ b/src/ArduinoJson/Json/JsonDeserializer.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Json/JsonSerializer.hpp b/src/ArduinoJson/Json/JsonSerializer.hpp index 1c96c0d2..91c209bd 100644 --- a/src/ArduinoJson/Json/JsonSerializer.hpp +++ b/src/ArduinoJson/Json/JsonSerializer.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Json/PrettyJsonSerializer.hpp b/src/ArduinoJson/Json/PrettyJsonSerializer.hpp index 872cd85e..58576048 100644 --- a/src/ArduinoJson/Json/PrettyJsonSerializer.hpp +++ b/src/ArduinoJson/Json/PrettyJsonSerializer.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Json/TextFormatter.hpp b/src/ArduinoJson/Json/TextFormatter.hpp index abb910a3..70c0bd39 100644 --- a/src/ArduinoJson/Json/TextFormatter.hpp +++ b/src/ArduinoJson/Json/TextFormatter.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Json/Utf8.hpp b/src/ArduinoJson/Json/Utf8.hpp index 9e6b506b..2403309f 100644 --- a/src/ArduinoJson/Json/Utf8.hpp +++ b/src/ArduinoJson/Json/Utf8.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Memory/Alignment.hpp b/src/ArduinoJson/Memory/Alignment.hpp index 663d8eef..506cdce9 100644 --- a/src/ArduinoJson/Memory/Alignment.hpp +++ b/src/ArduinoJson/Memory/Alignment.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Memory/MemoryPool.hpp b/src/ArduinoJson/Memory/MemoryPool.hpp index 7bc09095..a541b051 100644 --- a/src/ArduinoJson/Memory/MemoryPool.hpp +++ b/src/ArduinoJson/Memory/MemoryPool.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Memory/StringBuilder.hpp b/src/ArduinoJson/Memory/StringBuilder.hpp index 14c94773..47e9f432 100644 --- a/src/ArduinoJson/Memory/StringBuilder.hpp +++ b/src/ArduinoJson/Memory/StringBuilder.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Memory/StringSlot.hpp b/src/ArduinoJson/Memory/StringSlot.hpp index 7c55531d..a2880308 100644 --- a/src/ArduinoJson/Memory/StringSlot.hpp +++ b/src/ArduinoJson/Memory/StringSlot.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Misc/SerializedValue.hpp b/src/ArduinoJson/Misc/SerializedValue.hpp index 7c0f3dff..5bbd4c41 100644 --- a/src/ArduinoJson/Misc/SerializedValue.hpp +++ b/src/ArduinoJson/Misc/SerializedValue.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Misc/Visitable.hpp b/src/ArduinoJson/Misc/Visitable.hpp index 6d27c252..aa8e1837 100644 --- a/src/ArduinoJson/Misc/Visitable.hpp +++ b/src/ArduinoJson/Misc/Visitable.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/MsgPack/MsgPackDeserializer.hpp b/src/ArduinoJson/MsgPack/MsgPackDeserializer.hpp index 98283fdc..03525143 100644 --- a/src/ArduinoJson/MsgPack/MsgPackDeserializer.hpp +++ b/src/ArduinoJson/MsgPack/MsgPackDeserializer.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/MsgPack/MsgPackSerializer.hpp b/src/ArduinoJson/MsgPack/MsgPackSerializer.hpp index bb48dfa3..8c9f3b22 100644 --- a/src/ArduinoJson/MsgPack/MsgPackSerializer.hpp +++ b/src/ArduinoJson/MsgPack/MsgPackSerializer.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/MsgPack/endianess.hpp b/src/ArduinoJson/MsgPack/endianess.hpp index 8ab7a747..73c808c1 100644 --- a/src/ArduinoJson/MsgPack/endianess.hpp +++ b/src/ArduinoJson/MsgPack/endianess.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/MsgPack/ieee754.hpp b/src/ArduinoJson/MsgPack/ieee754.hpp index afc9af2f..ecb3d217 100644 --- a/src/ArduinoJson/MsgPack/ieee754.hpp +++ b/src/ArduinoJson/MsgPack/ieee754.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Namespace.hpp b/src/ArduinoJson/Namespace.hpp index d2b9a5f0..aef7cba2 100644 --- a/src/ArduinoJson/Namespace.hpp +++ b/src/ArduinoJson/Namespace.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Numbers/Float.hpp b/src/ArduinoJson/Numbers/Float.hpp index 8bcfd700..a1c5597e 100644 --- a/src/ArduinoJson/Numbers/Float.hpp +++ b/src/ArduinoJson/Numbers/Float.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Numbers/FloatParts.hpp b/src/ArduinoJson/Numbers/FloatParts.hpp index 1744549d..adbd9474 100644 --- a/src/ArduinoJson/Numbers/FloatParts.hpp +++ b/src/ArduinoJson/Numbers/FloatParts.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Numbers/FloatTraits.hpp b/src/ArduinoJson/Numbers/FloatTraits.hpp index af6168b8..b817217f 100644 --- a/src/ArduinoJson/Numbers/FloatTraits.hpp +++ b/src/ArduinoJson/Numbers/FloatTraits.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Numbers/Integer.hpp b/src/ArduinoJson/Numbers/Integer.hpp index 1f66dbf6..84f16cf8 100644 --- a/src/ArduinoJson/Numbers/Integer.hpp +++ b/src/ArduinoJson/Numbers/Integer.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Numbers/isFloat.hpp b/src/ArduinoJson/Numbers/isFloat.hpp index c4832040..efaa55bc 100644 --- a/src/ArduinoJson/Numbers/isFloat.hpp +++ b/src/ArduinoJson/Numbers/isFloat.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Numbers/isInteger.hpp b/src/ArduinoJson/Numbers/isInteger.hpp index 88df71de..620f381b 100644 --- a/src/ArduinoJson/Numbers/isInteger.hpp +++ b/src/ArduinoJson/Numbers/isInteger.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Numbers/parseFloat.hpp b/src/ArduinoJson/Numbers/parseFloat.hpp index b0dd4395..3f30885f 100644 --- a/src/ArduinoJson/Numbers/parseFloat.hpp +++ b/src/ArduinoJson/Numbers/parseFloat.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Numbers/parseInteger.hpp b/src/ArduinoJson/Numbers/parseInteger.hpp index eff75863..9bc40910 100644 --- a/src/ArduinoJson/Numbers/parseInteger.hpp +++ b/src/ArduinoJson/Numbers/parseInteger.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Object/MemberProxy.hpp b/src/ArduinoJson/Object/MemberProxy.hpp index ea67db3c..92fd30a9 100644 --- a/src/ArduinoJson/Object/MemberProxy.hpp +++ b/src/ArduinoJson/Object/MemberProxy.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Object/ObjectFunctions.hpp b/src/ArduinoJson/Object/ObjectFunctions.hpp index b07bea86..aede1817 100644 --- a/src/ArduinoJson/Object/ObjectFunctions.hpp +++ b/src/ArduinoJson/Object/ObjectFunctions.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Object/ObjectImpl.hpp b/src/ArduinoJson/Object/ObjectImpl.hpp index 109257ba..03551c85 100644 --- a/src/ArduinoJson/Object/ObjectImpl.hpp +++ b/src/ArduinoJson/Object/ObjectImpl.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Object/ObjectIterator.hpp b/src/ArduinoJson/Object/ObjectIterator.hpp index e8f72c3d..710a2bd1 100644 --- a/src/ArduinoJson/Object/ObjectIterator.hpp +++ b/src/ArduinoJson/Object/ObjectIterator.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Object/ObjectRef.hpp b/src/ArduinoJson/Object/ObjectRef.hpp index 6184910f..397fe56b 100644 --- a/src/ArduinoJson/Object/ObjectRef.hpp +++ b/src/ArduinoJson/Object/ObjectRef.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Object/ObjectShortcuts.hpp b/src/ArduinoJson/Object/ObjectShortcuts.hpp index 7636aee9..7b1081af 100644 --- a/src/ArduinoJson/Object/ObjectShortcuts.hpp +++ b/src/ArduinoJson/Object/ObjectShortcuts.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Object/Pair.hpp b/src/ArduinoJson/Object/Pair.hpp index 697e6ac3..9dd8390f 100644 --- a/src/ArduinoJson/Object/Pair.hpp +++ b/src/ArduinoJson/Object/Pair.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Operators/VariantCasts.hpp b/src/ArduinoJson/Operators/VariantCasts.hpp index 33c2358a..8a5cc368 100644 --- a/src/ArduinoJson/Operators/VariantCasts.hpp +++ b/src/ArduinoJson/Operators/VariantCasts.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Operators/VariantComparisons.hpp b/src/ArduinoJson/Operators/VariantComparisons.hpp index 2d2517c6..c10bcf8f 100644 --- a/src/ArduinoJson/Operators/VariantComparisons.hpp +++ b/src/ArduinoJson/Operators/VariantComparisons.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Operators/VariantOperators.hpp b/src/ArduinoJson/Operators/VariantOperators.hpp index bc4a839c..c71b035e 100644 --- a/src/ArduinoJson/Operators/VariantOperators.hpp +++ b/src/ArduinoJson/Operators/VariantOperators.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Operators/VariantOr.hpp b/src/ArduinoJson/Operators/VariantOr.hpp index 83c063bc..36ad22c4 100644 --- a/src/ArduinoJson/Operators/VariantOr.hpp +++ b/src/ArduinoJson/Operators/VariantOr.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Operators/VariantShortcuts.hpp b/src/ArduinoJson/Operators/VariantShortcuts.hpp index 65e997d5..6bbeaa5e 100644 --- a/src/ArduinoJson/Operators/VariantShortcuts.hpp +++ b/src/ArduinoJson/Operators/VariantShortcuts.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/assert.hpp b/src/ArduinoJson/Polyfills/assert.hpp index 06d99fa1..d607bc8b 100644 --- a/src/ArduinoJson/Polyfills/assert.hpp +++ b/src/ArduinoJson/Polyfills/assert.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/attributes.hpp b/src/ArduinoJson/Polyfills/attributes.hpp index 76c73868..f0c45be7 100644 --- a/src/ArduinoJson/Polyfills/attributes.hpp +++ b/src/ArduinoJson/Polyfills/attributes.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/ctype.hpp b/src/ArduinoJson/Polyfills/ctype.hpp index f89bb177..0efb8b5e 100644 --- a/src/ArduinoJson/Polyfills/ctype.hpp +++ b/src/ArduinoJson/Polyfills/ctype.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/math.hpp b/src/ArduinoJson/Polyfills/math.hpp index f9974407..c980cfe6 100644 --- a/src/ArduinoJson/Polyfills/math.hpp +++ b/src/ArduinoJson/Polyfills/math.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/mpl/max.hpp b/src/ArduinoJson/Polyfills/mpl/max.hpp index 169ff4d3..ebeaed06 100644 --- a/src/ArduinoJson/Polyfills/mpl/max.hpp +++ b/src/ArduinoJson/Polyfills/mpl/max.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits.hpp b/src/ArduinoJson/Polyfills/type_traits.hpp index a2494fb5..b4e1a3f4 100644 --- a/src/ArduinoJson/Polyfills/type_traits.hpp +++ b/src/ArduinoJson/Polyfills/type_traits.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits/conditional.hpp b/src/ArduinoJson/Polyfills/type_traits/conditional.hpp index 5d54d480..083ab079 100644 --- a/src/ArduinoJson/Polyfills/type_traits/conditional.hpp +++ b/src/ArduinoJson/Polyfills/type_traits/conditional.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits/enable_if.hpp b/src/ArduinoJson/Polyfills/type_traits/enable_if.hpp index a57bc000..a707eb8c 100644 --- a/src/ArduinoJson/Polyfills/type_traits/enable_if.hpp +++ b/src/ArduinoJson/Polyfills/type_traits/enable_if.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits/integral_constant.hpp b/src/ArduinoJson/Polyfills/type_traits/integral_constant.hpp index cd275c58..2a18347d 100644 --- a/src/ArduinoJson/Polyfills/type_traits/integral_constant.hpp +++ b/src/ArduinoJson/Polyfills/type_traits/integral_constant.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits/is_array.hpp b/src/ArduinoJson/Polyfills/type_traits/is_array.hpp index e5e23f9f..01a5e016 100644 --- a/src/ArduinoJson/Polyfills/type_traits/is_array.hpp +++ b/src/ArduinoJson/Polyfills/type_traits/is_array.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits/is_base_of.hpp b/src/ArduinoJson/Polyfills/type_traits/is_base_of.hpp index bb4896db..406d39a3 100644 --- a/src/ArduinoJson/Polyfills/type_traits/is_base_of.hpp +++ b/src/ArduinoJson/Polyfills/type_traits/is_base_of.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits/is_const.hpp b/src/ArduinoJson/Polyfills/type_traits/is_const.hpp index 9e12c33d..c12fcc4e 100644 --- a/src/ArduinoJson/Polyfills/type_traits/is_const.hpp +++ b/src/ArduinoJson/Polyfills/type_traits/is_const.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits/is_floating_point.hpp b/src/ArduinoJson/Polyfills/type_traits/is_floating_point.hpp index dc3a32cf..32584aea 100644 --- a/src/ArduinoJson/Polyfills/type_traits/is_floating_point.hpp +++ b/src/ArduinoJson/Polyfills/type_traits/is_floating_point.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits/is_integral.hpp b/src/ArduinoJson/Polyfills/type_traits/is_integral.hpp index 1c320382..6d59a2ae 100644 --- a/src/ArduinoJson/Polyfills/type_traits/is_integral.hpp +++ b/src/ArduinoJson/Polyfills/type_traits/is_integral.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits/is_same.hpp b/src/ArduinoJson/Polyfills/type_traits/is_same.hpp index 0bf60f63..7ad9ce56 100644 --- a/src/ArduinoJson/Polyfills/type_traits/is_same.hpp +++ b/src/ArduinoJson/Polyfills/type_traits/is_same.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits/is_signed.hpp b/src/ArduinoJson/Polyfills/type_traits/is_signed.hpp index ff596987..abca9614 100644 --- a/src/ArduinoJson/Polyfills/type_traits/is_signed.hpp +++ b/src/ArduinoJson/Polyfills/type_traits/is_signed.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits/is_unsigned.hpp b/src/ArduinoJson/Polyfills/type_traits/is_unsigned.hpp index e3024e35..e9e4912f 100644 --- a/src/ArduinoJson/Polyfills/type_traits/is_unsigned.hpp +++ b/src/ArduinoJson/Polyfills/type_traits/is_unsigned.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits/remove_const.hpp b/src/ArduinoJson/Polyfills/type_traits/remove_const.hpp index 6b8b6260..f2c6b15b 100644 --- a/src/ArduinoJson/Polyfills/type_traits/remove_const.hpp +++ b/src/ArduinoJson/Polyfills/type_traits/remove_const.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/type_traits/remove_reference.hpp b/src/ArduinoJson/Polyfills/type_traits/remove_reference.hpp index ad44d291..edbc122a 100644 --- a/src/ArduinoJson/Polyfills/type_traits/remove_reference.hpp +++ b/src/ArduinoJson/Polyfills/type_traits/remove_reference.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Polyfills/utility.hpp b/src/ArduinoJson/Polyfills/utility.hpp index a28d31c9..c66a155a 100644 --- a/src/ArduinoJson/Polyfills/utility.hpp +++ b/src/ArduinoJson/Polyfills/utility.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Serialization/DummyWriter.hpp b/src/ArduinoJson/Serialization/DummyWriter.hpp index aca2ba53..b54e8a53 100644 --- a/src/ArduinoJson/Serialization/DummyWriter.hpp +++ b/src/ArduinoJson/Serialization/DummyWriter.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Serialization/DynamicStringWriter.hpp b/src/ArduinoJson/Serialization/DynamicStringWriter.hpp index 7ae80492..ab10f49e 100644 --- a/src/ArduinoJson/Serialization/DynamicStringWriter.hpp +++ b/src/ArduinoJson/Serialization/DynamicStringWriter.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Serialization/StaticStringWriter.hpp b/src/ArduinoJson/Serialization/StaticStringWriter.hpp index aa9ad4c8..5a27a545 100644 --- a/src/ArduinoJson/Serialization/StaticStringWriter.hpp +++ b/src/ArduinoJson/Serialization/StaticStringWriter.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Serialization/StreamWriter.hpp b/src/ArduinoJson/Serialization/StreamWriter.hpp index 06515d13..6eb87992 100644 --- a/src/ArduinoJson/Serialization/StreamWriter.hpp +++ b/src/ArduinoJson/Serialization/StreamWriter.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Serialization/measure.hpp b/src/ArduinoJson/Serialization/measure.hpp index 67bb5788..961c732d 100644 --- a/src/ArduinoJson/Serialization/measure.hpp +++ b/src/ArduinoJson/Serialization/measure.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Serialization/serialize.hpp b/src/ArduinoJson/Serialization/serialize.hpp index 4b21468d..ae47d1fb 100644 --- a/src/ArduinoJson/Serialization/serialize.hpp +++ b/src/ArduinoJson/Serialization/serialize.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/StringStorage/StringCopier.hpp b/src/ArduinoJson/StringStorage/StringCopier.hpp index 6082dde2..026a24f7 100644 --- a/src/ArduinoJson/StringStorage/StringCopier.hpp +++ b/src/ArduinoJson/StringStorage/StringCopier.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/StringStorage/StringMover.hpp b/src/ArduinoJson/StringStorage/StringMover.hpp index 5f934562..eeba11f5 100644 --- a/src/ArduinoJson/StringStorage/StringMover.hpp +++ b/src/ArduinoJson/StringStorage/StringMover.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/StringStorage/StringStorage.hpp b/src/ArduinoJson/StringStorage/StringStorage.hpp index 90db61c8..aebf776a 100644 --- a/src/ArduinoJson/StringStorage/StringStorage.hpp +++ b/src/ArduinoJson/StringStorage/StringStorage.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Strings/ArduinoStringAdapter.hpp b/src/ArduinoJson/Strings/ArduinoStringAdapter.hpp index b23e8890..7d9e45c1 100644 --- a/src/ArduinoJson/Strings/ArduinoStringAdapter.hpp +++ b/src/ArduinoJson/Strings/ArduinoStringAdapter.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Strings/ConstRamStringAdapter.hpp b/src/ArduinoJson/Strings/ConstRamStringAdapter.hpp index deab7206..75312f42 100644 --- a/src/ArduinoJson/Strings/ConstRamStringAdapter.hpp +++ b/src/ArduinoJson/Strings/ConstRamStringAdapter.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Strings/FlashStringAdapter.hpp b/src/ArduinoJson/Strings/FlashStringAdapter.hpp index cd9e07c4..99fa4f19 100644 --- a/src/ArduinoJson/Strings/FlashStringAdapter.hpp +++ b/src/ArduinoJson/Strings/FlashStringAdapter.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Strings/RamStringAdapter.hpp b/src/ArduinoJson/Strings/RamStringAdapter.hpp index 7512f4e8..7e1d8a3a 100644 --- a/src/ArduinoJson/Strings/RamStringAdapter.hpp +++ b/src/ArduinoJson/Strings/RamStringAdapter.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Strings/SizedFlashStringAdapter.hpp b/src/ArduinoJson/Strings/SizedFlashStringAdapter.hpp index 2b351c52..515dcb51 100644 --- a/src/ArduinoJson/Strings/SizedFlashStringAdapter.hpp +++ b/src/ArduinoJson/Strings/SizedFlashStringAdapter.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Strings/SizedRamStringAdapter.hpp b/src/ArduinoJson/Strings/SizedRamStringAdapter.hpp index 0f2c86a7..119dfdb1 100644 --- a/src/ArduinoJson/Strings/SizedRamStringAdapter.hpp +++ b/src/ArduinoJson/Strings/SizedRamStringAdapter.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Strings/StlStringAdapter.hpp b/src/ArduinoJson/Strings/StlStringAdapter.hpp index 34a2d158..956e666c 100644 --- a/src/ArduinoJson/Strings/StlStringAdapter.hpp +++ b/src/ArduinoJson/Strings/StlStringAdapter.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Strings/String.hpp b/src/ArduinoJson/Strings/String.hpp index 506e76ae..ff6b63e6 100644 --- a/src/ArduinoJson/Strings/String.hpp +++ b/src/ArduinoJson/Strings/String.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Strings/StringAdapters.hpp b/src/ArduinoJson/Strings/StringAdapters.hpp index 512d0103..6528b6b6 100644 --- a/src/ArduinoJson/Strings/StringAdapters.hpp +++ b/src/ArduinoJson/Strings/StringAdapters.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Variant/SlotFunctions.hpp b/src/ArduinoJson/Variant/SlotFunctions.hpp index 8e92a62b..fde0330e 100644 --- a/src/ArduinoJson/Variant/SlotFunctions.hpp +++ b/src/ArduinoJson/Variant/SlotFunctions.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Variant/VariantAs.hpp b/src/ArduinoJson/Variant/VariantAs.hpp index 0e655ec0..a6512e6f 100644 --- a/src/ArduinoJson/Variant/VariantAs.hpp +++ b/src/ArduinoJson/Variant/VariantAs.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Variant/VariantAsImpl.hpp b/src/ArduinoJson/Variant/VariantAsImpl.hpp index 6303d351..4c7f054c 100644 --- a/src/ArduinoJson/Variant/VariantAsImpl.hpp +++ b/src/ArduinoJson/Variant/VariantAsImpl.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Variant/VariantContent.hpp b/src/ArduinoJson/Variant/VariantContent.hpp index eb9653a2..105e06b9 100644 --- a/src/ArduinoJson/Variant/VariantContent.hpp +++ b/src/ArduinoJson/Variant/VariantContent.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Variant/VariantData.hpp b/src/ArduinoJson/Variant/VariantData.hpp index 6cd9002b..de441da8 100644 --- a/src/ArduinoJson/Variant/VariantData.hpp +++ b/src/ArduinoJson/Variant/VariantData.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Variant/VariantFunctions.hpp b/src/ArduinoJson/Variant/VariantFunctions.hpp index 199785cf..6ddbbed8 100644 --- a/src/ArduinoJson/Variant/VariantFunctions.hpp +++ b/src/ArduinoJson/Variant/VariantFunctions.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Variant/VariantImpl.hpp b/src/ArduinoJson/Variant/VariantImpl.hpp index 7f6cd80f..d18ed2d6 100644 --- a/src/ArduinoJson/Variant/VariantImpl.hpp +++ b/src/ArduinoJson/Variant/VariantImpl.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Variant/VariantRef.hpp b/src/ArduinoJson/Variant/VariantRef.hpp index 49065f64..fc05a45e 100644 --- a/src/ArduinoJson/Variant/VariantRef.hpp +++ b/src/ArduinoJson/Variant/VariantRef.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Variant/VariantSlot.hpp b/src/ArduinoJson/Variant/VariantSlot.hpp index 8264fa6e..dda5eae0 100644 --- a/src/ArduinoJson/Variant/VariantSlot.hpp +++ b/src/ArduinoJson/Variant/VariantSlot.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/Variant/VariantTo.hpp b/src/ArduinoJson/Variant/VariantTo.hpp index 24bd0e94..b3da992b 100644 --- a/src/ArduinoJson/Variant/VariantTo.hpp +++ b/src/ArduinoJson/Variant/VariantTo.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/src/ArduinoJson/version.hpp b/src/ArduinoJson/version.hpp index afd38e62..da46d230 100644 --- a/src/ArduinoJson/version.hpp +++ b/src/ArduinoJson/version.hpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #pragma once diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 10d058fb..a1f5471d 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)") diff --git a/test/ElementProxy/CMakeLists.txt b/test/ElementProxy/CMakeLists.txt index 5a732002..1fc266c0 100644 --- a/test/ElementProxy/CMakeLists.txt +++ b/test/ElementProxy/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(ElementProxyTests diff --git a/test/ElementProxy/add.cpp b/test/ElementProxy/add.cpp index 8f97e9fb..1652d074 100644 --- a/test/ElementProxy/add.cpp +++ b/test/ElementProxy/add.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/ElementProxy/set.cpp b/test/ElementProxy/set.cpp index fe8a9980..3d52b61d 100644 --- a/test/ElementProxy/set.cpp +++ b/test/ElementProxy/set.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/IntegrationTests/CMakeLists.txt b/test/IntegrationTests/CMakeLists.txt index d65e743e..ce12734f 100644 --- a/test/IntegrationTests/CMakeLists.txt +++ b/test/IntegrationTests/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(IntegrationTests diff --git a/test/IntegrationTests/gbathree.cpp b/test/IntegrationTests/gbathree.cpp index 9d0a9d84..c3025773 100644 --- a/test/IntegrationTests/gbathree.cpp +++ b/test/IntegrationTests/gbathree.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/IntegrationTests/issue772.cpp b/test/IntegrationTests/issue772.cpp index 26c2149b..97fd7f5d 100644 --- a/test/IntegrationTests/issue772.cpp +++ b/test/IntegrationTests/issue772.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/IntegrationTests/round_trip.cpp b/test/IntegrationTests/round_trip.cpp index c969212e..fcd11064 100644 --- a/test/IntegrationTests/round_trip.cpp +++ b/test/IntegrationTests/round_trip.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/CMakeLists.txt b/test/JsonArray/CMakeLists.txt index 9ae88e96..ec47b346 100644 --- a/test/JsonArray/CMakeLists.txt +++ b/test/JsonArray/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(JsonArrayTests diff --git a/test/JsonArray/add.cpp b/test/JsonArray/add.cpp index f04d622d..bab86ed6 100644 --- a/test/JsonArray/add.cpp +++ b/test/JsonArray/add.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/copyFrom.cpp b/test/JsonArray/copyFrom.cpp index 2d7e2790..0f83c877 100644 --- a/test/JsonArray/copyFrom.cpp +++ b/test/JsonArray/copyFrom.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/copyTo.cpp b/test/JsonArray/copyTo.cpp index 639e3a04..f565a157 100644 --- a/test/JsonArray/copyTo.cpp +++ b/test/JsonArray/copyTo.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/createNested.cpp b/test/JsonArray/createNested.cpp index a7d5311a..efe06962 100644 --- a/test/JsonArray/createNested.cpp +++ b/test/JsonArray/createNested.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/equals.cpp b/test/JsonArray/equals.cpp index a89503a3..8aa6c48d 100644 --- a/test/JsonArray/equals.cpp +++ b/test/JsonArray/equals.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/get.cpp b/test/JsonArray/get.cpp index 59869712..2905f1d5 100644 --- a/test/JsonArray/get.cpp +++ b/test/JsonArray/get.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/isNull.cpp b/test/JsonArray/isNull.cpp index c5830854..befab9fd 100644 --- a/test/JsonArray/isNull.cpp +++ b/test/JsonArray/isNull.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/iterator.cpp b/test/JsonArray/iterator.cpp index 62bc72ca..9128e6a0 100644 --- a/test/JsonArray/iterator.cpp +++ b/test/JsonArray/iterator.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/memoryUsage.cpp b/test/JsonArray/memoryUsage.cpp index f7cd0160..fc0e4b10 100644 --- a/test/JsonArray/memoryUsage.cpp +++ b/test/JsonArray/memoryUsage.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/nesting.cpp b/test/JsonArray/nesting.cpp index c998d7e4..0669036d 100644 --- a/test/JsonArray/nesting.cpp +++ b/test/JsonArray/nesting.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/remove.cpp b/test/JsonArray/remove.cpp index 14e583cb..e9af6403 100644 --- a/test/JsonArray/remove.cpp +++ b/test/JsonArray/remove.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/size.cpp b/test/JsonArray/size.cpp index 60a4f7c9..6e320df9 100644 --- a/test/JsonArray/size.cpp +++ b/test/JsonArray/size.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/std_string.cpp b/test/JsonArray/std_string.cpp index 3ba69775..0440a6fc 100644 --- a/test/JsonArray/std_string.cpp +++ b/test/JsonArray/std_string.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/subscript.cpp b/test/JsonArray/subscript.cpp index 7c9c04fc..c9d2d381 100644 --- a/test/JsonArray/subscript.cpp +++ b/test/JsonArray/subscript.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonArray/undefined.cpp b/test/JsonArray/undefined.cpp index 506feefd..8f97356c 100644 --- a/test/JsonArray/undefined.cpp +++ b/test/JsonArray/undefined.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDeserializer/CMakeLists.txt b/test/JsonDeserializer/CMakeLists.txt index 485ce3a6..7bf5ac56 100644 --- a/test/JsonDeserializer/CMakeLists.txt +++ b/test/JsonDeserializer/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(JsonDeserializerTests diff --git a/test/JsonDeserializer/DeserializationError.cpp b/test/JsonDeserializer/DeserializationError.cpp index 2ef451b1..a89f0fb6 100644 --- a/test/JsonDeserializer/DeserializationError.cpp +++ b/test/JsonDeserializer/DeserializationError.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDeserializer/deserializeJsonArray.cpp b/test/JsonDeserializer/deserializeJsonArray.cpp index 7451ba72..4cfa00b8 100644 --- a/test/JsonDeserializer/deserializeJsonArray.cpp +++ b/test/JsonDeserializer/deserializeJsonArray.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDeserializer/deserializeJsonArrayStatic.cpp b/test/JsonDeserializer/deserializeJsonArrayStatic.cpp index 36662ce3..cffce086 100644 --- a/test/JsonDeserializer/deserializeJsonArrayStatic.cpp +++ b/test/JsonDeserializer/deserializeJsonArrayStatic.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDeserializer/deserializeJsonObject.cpp b/test/JsonDeserializer/deserializeJsonObject.cpp index ed36c969..739f6d6d 100644 --- a/test/JsonDeserializer/deserializeJsonObject.cpp +++ b/test/JsonDeserializer/deserializeJsonObject.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDeserializer/deserializeJsonObjectStatic.cpp b/test/JsonDeserializer/deserializeJsonObjectStatic.cpp index f7cfa407..5d7346bc 100644 --- a/test/JsonDeserializer/deserializeJsonObjectStatic.cpp +++ b/test/JsonDeserializer/deserializeJsonObjectStatic.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDeserializer/deserializeJsonString.cpp b/test/JsonDeserializer/deserializeJsonString.cpp index e1bca182..0501eaa6 100644 --- a/test/JsonDeserializer/deserializeJsonString.cpp +++ b/test/JsonDeserializer/deserializeJsonString.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #define ARDUINOJSON_DECODE_UNICODE 1 diff --git a/test/JsonDeserializer/deserializeJsonValue.cpp b/test/JsonDeserializer/deserializeJsonValue.cpp index 8b33cd3d..25126638 100644 --- a/test/JsonDeserializer/deserializeJsonValue.cpp +++ b/test/JsonDeserializer/deserializeJsonValue.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDeserializer/input_types.cpp b/test/JsonDeserializer/input_types.cpp index 61dd8ce0..9b7fe473 100644 --- a/test/JsonDeserializer/input_types.cpp +++ b/test/JsonDeserializer/input_types.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDeserializer/nestingLimit.cpp b/test/JsonDeserializer/nestingLimit.cpp index 8452e16e..9eb95b30 100644 --- a/test/JsonDeserializer/nestingLimit.cpp +++ b/test/JsonDeserializer/nestingLimit.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDocument/CMakeLists.txt b/test/JsonDocument/CMakeLists.txt index e9d3aa66..e7cd25b2 100644 --- a/test/JsonDocument/CMakeLists.txt +++ b/test/JsonDocument/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(JsonDocumentTests diff --git a/test/JsonDocument/DynamicJsonDocument.cpp b/test/JsonDocument/DynamicJsonDocument.cpp index 85c16474..ddbdd4e7 100644 --- a/test/JsonDocument/DynamicJsonDocument.cpp +++ b/test/JsonDocument/DynamicJsonDocument.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDocument/StaticJsonDocument.cpp b/test/JsonDocument/StaticJsonDocument.cpp index ae3e3d5d..e393a319 100644 --- a/test/JsonDocument/StaticJsonDocument.cpp +++ b/test/JsonDocument/StaticJsonDocument.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDocument/add.cpp b/test/JsonDocument/add.cpp index a7957ff2..31ec53f2 100644 --- a/test/JsonDocument/add.cpp +++ b/test/JsonDocument/add.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDocument/createNested.cpp b/test/JsonDocument/createNested.cpp index 62e1ccd9..1e3adb96 100644 --- a/test/JsonDocument/createNested.cpp +++ b/test/JsonDocument/createNested.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDocument/isNull.cpp b/test/JsonDocument/isNull.cpp index 9b7a44c5..47dc2868 100644 --- a/test/JsonDocument/isNull.cpp +++ b/test/JsonDocument/isNull.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDocument/nesting.cpp b/test/JsonDocument/nesting.cpp index 5b28c425..148b49da 100644 --- a/test/JsonDocument/nesting.cpp +++ b/test/JsonDocument/nesting.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonDocument/subscript.cpp b/test/JsonDocument/subscript.cpp index ba24470d..3955bba6 100644 --- a/test/JsonDocument/subscript.cpp +++ b/test/JsonDocument/subscript.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/CMakeLists.txt b/test/JsonObject/CMakeLists.txt index 7cfa807c..d8df0c2d 100644 --- a/test/JsonObject/CMakeLists.txt +++ b/test/JsonObject/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(JsonObjectTests diff --git a/test/JsonObject/containsKey.cpp b/test/JsonObject/containsKey.cpp index 83b8dc84..0b838b22 100644 --- a/test/JsonObject/containsKey.cpp +++ b/test/JsonObject/containsKey.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/copy.cpp b/test/JsonObject/copy.cpp index e9fb4a32..26f34e73 100644 --- a/test/JsonObject/copy.cpp +++ b/test/JsonObject/copy.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/createNestedArray.cpp b/test/JsonObject/createNestedArray.cpp index 8e594cbd..05062c31 100644 --- a/test/JsonObject/createNestedArray.cpp +++ b/test/JsonObject/createNestedArray.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/createNestedObject.cpp b/test/JsonObject/createNestedObject.cpp index c73ac4f5..68506bb3 100644 --- a/test/JsonObject/createNestedObject.cpp +++ b/test/JsonObject/createNestedObject.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/equals.cpp b/test/JsonObject/equals.cpp index 65a51f29..0ea1e377 100644 --- a/test/JsonObject/equals.cpp +++ b/test/JsonObject/equals.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/invalid.cpp b/test/JsonObject/invalid.cpp index cc0349d0..2b0fffbb 100644 --- a/test/JsonObject/invalid.cpp +++ b/test/JsonObject/invalid.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/isNull.cpp b/test/JsonObject/isNull.cpp index fa3c6a46..92c6876d 100644 --- a/test/JsonObject/isNull.cpp +++ b/test/JsonObject/isNull.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/iterator.cpp b/test/JsonObject/iterator.cpp index 9b1208a6..3c5f1d87 100644 --- a/test/JsonObject/iterator.cpp +++ b/test/JsonObject/iterator.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/memoryUsage.cpp b/test/JsonObject/memoryUsage.cpp index 51b27525..d4e96ddf 100644 --- a/test/JsonObject/memoryUsage.cpp +++ b/test/JsonObject/memoryUsage.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/nesting.cpp b/test/JsonObject/nesting.cpp index b6963be1..bd65e61a 100644 --- a/test/JsonObject/nesting.cpp +++ b/test/JsonObject/nesting.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/remove.cpp b/test/JsonObject/remove.cpp index 0d509b86..b3ef611e 100644 --- a/test/JsonObject/remove.cpp +++ b/test/JsonObject/remove.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/size.cpp b/test/JsonObject/size.cpp index 40ae03cf..ae3184bb 100644 --- a/test/JsonObject/size.cpp +++ b/test/JsonObject/size.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/std_string.cpp b/test/JsonObject/std_string.cpp index 2d6d5183..8c771fb6 100644 --- a/test/JsonObject/std_string.cpp +++ b/test/JsonObject/std_string.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonObject/subscript.cpp b/test/JsonObject/subscript.cpp index 2912be49..418c0d50 100644 --- a/test/JsonObject/subscript.cpp +++ b/test/JsonObject/subscript.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonSerializer/CMakeLists.txt b/test/JsonSerializer/CMakeLists.txt index 9fe4711b..fb18c448 100644 --- a/test/JsonSerializer/CMakeLists.txt +++ b/test/JsonSerializer/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(JsonSerializerTests diff --git a/test/JsonSerializer/JsonArray.cpp b/test/JsonSerializer/JsonArray.cpp index 31d13ef0..e61ef8a1 100644 --- a/test/JsonSerializer/JsonArray.cpp +++ b/test/JsonSerializer/JsonArray.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonSerializer/JsonArrayPretty.cpp b/test/JsonSerializer/JsonArrayPretty.cpp index 9480b196..4122043c 100644 --- a/test/JsonSerializer/JsonArrayPretty.cpp +++ b/test/JsonSerializer/JsonArrayPretty.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonSerializer/JsonObject.cpp b/test/JsonSerializer/JsonObject.cpp index b8af8f6b..573b4ae6 100644 --- a/test/JsonSerializer/JsonObject.cpp +++ b/test/JsonSerializer/JsonObject.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonSerializer/JsonObjectPretty.cpp b/test/JsonSerializer/JsonObjectPretty.cpp index aea4e585..aa33fbbf 100644 --- a/test/JsonSerializer/JsonObjectPretty.cpp +++ b/test/JsonSerializer/JsonObjectPretty.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonSerializer/JsonVariant.cpp b/test/JsonSerializer/JsonVariant.cpp index c572b57d..f5e223b6 100644 --- a/test/JsonSerializer/JsonVariant.cpp +++ b/test/JsonSerializer/JsonVariant.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonSerializer/std_stream.cpp b/test/JsonSerializer/std_stream.cpp index cd48c266..55c8755d 100644 --- a/test/JsonSerializer/std_stream.cpp +++ b/test/JsonSerializer/std_stream.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonSerializer/std_string.cpp b/test/JsonSerializer/std_string.cpp index fcc94738..bb840b70 100644 --- a/test/JsonSerializer/std_string.cpp +++ b/test/JsonSerializer/std_string.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/CMakeLists.txt b/test/JsonVariant/CMakeLists.txt index 5fb26353..aa05d82e 100644 --- a/test/JsonVariant/CMakeLists.txt +++ b/test/JsonVariant/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(JsonVariantTests diff --git a/test/JsonVariant/add.cpp b/test/JsonVariant/add.cpp index 840985dd..f3801456 100644 --- a/test/JsonVariant/add.cpp +++ b/test/JsonVariant/add.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/as.cpp b/test/JsonVariant/as.cpp index a1e84956..eeb9c514 100644 --- a/test/JsonVariant/as.cpp +++ b/test/JsonVariant/as.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/compare.cpp b/test/JsonVariant/compare.cpp index 1adfd162..49257cd7 100644 --- a/test/JsonVariant/compare.cpp +++ b/test/JsonVariant/compare.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/copy.cpp b/test/JsonVariant/copy.cpp index ff8ba385..04a2d07c 100644 --- a/test/JsonVariant/copy.cpp +++ b/test/JsonVariant/copy.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/createNested.cpp b/test/JsonVariant/createNested.cpp index 5bea89a7..80327942 100644 --- a/test/JsonVariant/createNested.cpp +++ b/test/JsonVariant/createNested.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/get.cpp b/test/JsonVariant/get.cpp index ada2a720..872dab62 100644 --- a/test/JsonVariant/get.cpp +++ b/test/JsonVariant/get.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/is.cpp b/test/JsonVariant/is.cpp index c0e91d13..ec675622 100644 --- a/test/JsonVariant/is.cpp +++ b/test/JsonVariant/is.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/isnull.cpp b/test/JsonVariant/isnull.cpp index 2c091ba2..aa5013c1 100644 --- a/test/JsonVariant/isnull.cpp +++ b/test/JsonVariant/isnull.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/memoryUsage.cpp b/test/JsonVariant/memoryUsage.cpp index 83f006c8..56519588 100644 --- a/test/JsonVariant/memoryUsage.cpp +++ b/test/JsonVariant/memoryUsage.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/misc.cpp b/test/JsonVariant/misc.cpp index 9d7bdb76..06d78401 100644 --- a/test/JsonVariant/misc.cpp +++ b/test/JsonVariant/misc.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/nesting.cpp b/test/JsonVariant/nesting.cpp index 290a5cbc..62d1f7a3 100644 --- a/test/JsonVariant/nesting.cpp +++ b/test/JsonVariant/nesting.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/or.cpp b/test/JsonVariant/or.cpp index c8a873b1..5dab392c 100644 --- a/test/JsonVariant/or.cpp +++ b/test/JsonVariant/or.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/set.cpp b/test/JsonVariant/set.cpp index 7ec2ff6b..1a15a814 100644 --- a/test/JsonVariant/set.cpp +++ b/test/JsonVariant/set.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/subscript.cpp b/test/JsonVariant/subscript.cpp index b56b5076..bdc3cf05 100644 --- a/test/JsonVariant/subscript.cpp +++ b/test/JsonVariant/subscript.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/types.cpp b/test/JsonVariant/types.cpp index 55214b10..48454610 100644 --- a/test/JsonVariant/types.cpp +++ b/test/JsonVariant/types.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/JsonVariant/undefined.cpp b/test/JsonVariant/undefined.cpp index b27f3278..cabf788c 100644 --- a/test/JsonVariant/undefined.cpp +++ b/test/JsonVariant/undefined.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MemberProxy/CMakeLists.txt b/test/MemberProxy/CMakeLists.txt index 918a426a..ac35827d 100644 --- a/test/MemberProxy/CMakeLists.txt +++ b/test/MemberProxy/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(MemberProxyTests diff --git a/test/MemberProxy/add.cpp b/test/MemberProxy/add.cpp index e3e11a53..2862d505 100644 --- a/test/MemberProxy/add.cpp +++ b/test/MemberProxy/add.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MemberProxy/set.cpp b/test/MemberProxy/set.cpp index 1ffdf9a1..9fd372dc 100644 --- a/test/MemberProxy/set.cpp +++ b/test/MemberProxy/set.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MemberProxy/subscript.cpp b/test/MemberProxy/subscript.cpp index fd996d8d..fcd883ba 100644 --- a/test/MemberProxy/subscript.cpp +++ b/test/MemberProxy/subscript.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MemoryPool/CMakeLists.txt b/test/MemoryPool/CMakeLists.txt index d63db0f1..e28e3d98 100644 --- a/test/MemoryPool/CMakeLists.txt +++ b/test/MemoryPool/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(MemoryPoolTests diff --git a/test/MemoryPool/StringBuilder.cpp b/test/MemoryPool/StringBuilder.cpp index ced1a600..c9afdbfa 100644 --- a/test/MemoryPool/StringBuilder.cpp +++ b/test/MemoryPool/StringBuilder.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MemoryPool/allocString.cpp b/test/MemoryPool/allocString.cpp index a18872ac..3f1d9d51 100644 --- a/test/MemoryPool/allocString.cpp +++ b/test/MemoryPool/allocString.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MemoryPool/allocVariant.cpp b/test/MemoryPool/allocVariant.cpp index 419f8863..10f79d60 100644 --- a/test/MemoryPool/allocVariant.cpp +++ b/test/MemoryPool/allocVariant.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MemoryPool/clear.cpp b/test/MemoryPool/clear.cpp index 51bf5ed2..482ecdbb 100644 --- a/test/MemoryPool/clear.cpp +++ b/test/MemoryPool/clear.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MemoryPool/size.cpp b/test/MemoryPool/size.cpp index 2e277af8..50163aca 100644 --- a/test/MemoryPool/size.cpp +++ b/test/MemoryPool/size.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/Misc/CMakeLists.txt b/test/Misc/CMakeLists.txt index b1667d98..68d44c8f 100644 --- a/test/Misc/CMakeLists.txt +++ b/test/Misc/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(MiscTests diff --git a/test/Misc/FloatParts.cpp b/test/Misc/FloatParts.cpp index bb7efced..d204eebe 100644 --- a/test/Misc/FloatParts.cpp +++ b/test/Misc/FloatParts.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/Misc/StringWriter.cpp b/test/Misc/StringWriter.cpp index 10af1fc2..0e211ae7 100644 --- a/test/Misc/StringWriter.cpp +++ b/test/Misc/StringWriter.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/Misc/TypeTraits.cpp b/test/Misc/TypeTraits.cpp index 851cf11a..66f77fe5 100644 --- a/test/Misc/TypeTraits.cpp +++ b/test/Misc/TypeTraits.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/Misc/unsigned_char.cpp b/test/Misc/unsigned_char.cpp index 5160bc1e..a09ad788 100644 --- a/test/Misc/unsigned_char.cpp +++ b/test/Misc/unsigned_char.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/Misc/version.cpp b/test/Misc/version.cpp index bc47839a..3e8d8761 100644 --- a/test/Misc/version.cpp +++ b/test/Misc/version.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MixedConfiguration/CMakeLists.txt b/test/MixedConfiguration/CMakeLists.txt index eb715c7a..cb99c23a 100644 --- a/test/MixedConfiguration/CMakeLists.txt +++ b/test/MixedConfiguration/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License # we need C++11 for 'long long' diff --git a/test/MsgPackDeserializer/CMakeLists.txt b/test/MsgPackDeserializer/CMakeLists.txt index 057ff099..837a21d0 100644 --- a/test/MsgPackDeserializer/CMakeLists.txt +++ b/test/MsgPackDeserializer/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(MsgPackDeserializerTests diff --git a/test/MsgPackDeserializer/deserializeArray.cpp b/test/MsgPackDeserializer/deserializeArray.cpp index 9c8293b7..2b9b4deb 100644 --- a/test/MsgPackDeserializer/deserializeArray.cpp +++ b/test/MsgPackDeserializer/deserializeArray.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MsgPackDeserializer/deserializeObject.cpp b/test/MsgPackDeserializer/deserializeObject.cpp index cb022fdf..d5108575 100644 --- a/test/MsgPackDeserializer/deserializeObject.cpp +++ b/test/MsgPackDeserializer/deserializeObject.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MsgPackDeserializer/deserializeStaticVariant.cpp b/test/MsgPackDeserializer/deserializeStaticVariant.cpp index 8210d96d..d445100b 100644 --- a/test/MsgPackDeserializer/deserializeStaticVariant.cpp +++ b/test/MsgPackDeserializer/deserializeStaticVariant.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MsgPackDeserializer/deserializeVariant.cpp b/test/MsgPackDeserializer/deserializeVariant.cpp index 32223447..8bcdc99a 100644 --- a/test/MsgPackDeserializer/deserializeVariant.cpp +++ b/test/MsgPackDeserializer/deserializeVariant.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MsgPackDeserializer/doubleToFloat.cpp b/test/MsgPackDeserializer/doubleToFloat.cpp index e7fea8d5..4d295535 100644 --- a/test/MsgPackDeserializer/doubleToFloat.cpp +++ b/test/MsgPackDeserializer/doubleToFloat.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MsgPackDeserializer/incompleteInput.cpp b/test/MsgPackDeserializer/incompleteInput.cpp index 8086ea40..9c47b64e 100644 --- a/test/MsgPackDeserializer/incompleteInput.cpp +++ b/test/MsgPackDeserializer/incompleteInput.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MsgPackDeserializer/input_types.cpp b/test/MsgPackDeserializer/input_types.cpp index 2bdd3b1e..3b20add4 100644 --- a/test/MsgPackDeserializer/input_types.cpp +++ b/test/MsgPackDeserializer/input_types.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MsgPackDeserializer/nestingLimit.cpp b/test/MsgPackDeserializer/nestingLimit.cpp index 92d99796..9084f14d 100644 --- a/test/MsgPackDeserializer/nestingLimit.cpp +++ b/test/MsgPackDeserializer/nestingLimit.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MsgPackDeserializer/notSupported.cpp b/test/MsgPackDeserializer/notSupported.cpp index 3b9471b8..b2857d10 100644 --- a/test/MsgPackDeserializer/notSupported.cpp +++ b/test/MsgPackDeserializer/notSupported.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MsgPackSerializer/CMakeLists.txt b/test/MsgPackSerializer/CMakeLists.txt index 8ee09f00..e4517bda 100644 --- a/test/MsgPackSerializer/CMakeLists.txt +++ b/test/MsgPackSerializer/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(MsgPackSerializerTests diff --git a/test/MsgPackSerializer/destination_types.cpp b/test/MsgPackSerializer/destination_types.cpp index e17b1e5c..6ea7b5a4 100644 --- a/test/MsgPackSerializer/destination_types.cpp +++ b/test/MsgPackSerializer/destination_types.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MsgPackSerializer/measure.cpp b/test/MsgPackSerializer/measure.cpp index a4c9b3da..c519199a 100644 --- a/test/MsgPackSerializer/measure.cpp +++ b/test/MsgPackSerializer/measure.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MsgPackSerializer/serializeArray.cpp b/test/MsgPackSerializer/serializeArray.cpp index 2b7877c4..dbc2d032 100644 --- a/test/MsgPackSerializer/serializeArray.cpp +++ b/test/MsgPackSerializer/serializeArray.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MsgPackSerializer/serializeObject.cpp b/test/MsgPackSerializer/serializeObject.cpp index f72ac394..83653982 100644 --- a/test/MsgPackSerializer/serializeObject.cpp +++ b/test/MsgPackSerializer/serializeObject.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/MsgPackSerializer/serializeVariant.cpp b/test/MsgPackSerializer/serializeVariant.cpp index 209b99b2..d67b050e 100644 --- a/test/MsgPackSerializer/serializeVariant.cpp +++ b/test/MsgPackSerializer/serializeVariant.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/Numbers/CMakeLists.txt b/test/Numbers/CMakeLists.txt index 3f3dc9e8..ef142ef7 100644 --- a/test/Numbers/CMakeLists.txt +++ b/test/Numbers/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(NumbersTests diff --git a/test/Numbers/isFloat.cpp b/test/Numbers/isFloat.cpp index 192b7f91..7ca87b53 100644 --- a/test/Numbers/isFloat.cpp +++ b/test/Numbers/isFloat.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/Numbers/isInteger.cpp b/test/Numbers/isInteger.cpp index 4f95a2e8..12aabe68 100644 --- a/test/Numbers/isInteger.cpp +++ b/test/Numbers/isInteger.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/Numbers/parseFloat.cpp b/test/Numbers/parseFloat.cpp index 8628a78d..da94b5bd 100644 --- a/test/Numbers/parseFloat.cpp +++ b/test/Numbers/parseFloat.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/Numbers/parseInteger.cpp b/test/Numbers/parseInteger.cpp index 1b945168..40d33f28 100644 --- a/test/Numbers/parseInteger.cpp +++ b/test/Numbers/parseInteger.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/TextFormatter/CMakeLists.txt b/test/TextFormatter/CMakeLists.txt index be28de3e..ca235147 100644 --- a/test/TextFormatter/CMakeLists.txt +++ b/test/TextFormatter/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_executable(JsonWriterTests diff --git a/test/TextFormatter/writeFloat.cpp b/test/TextFormatter/writeFloat.cpp index f44a5d57..385051d4 100644 --- a/test/TextFormatter/writeFloat.cpp +++ b/test/TextFormatter/writeFloat.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/test/TextFormatter/writeString.cpp b/test/TextFormatter/writeString.cpp index 2bfecb5a..8dbf2848 100644 --- a/test/TextFormatter/writeString.cpp +++ b/test/TextFormatter/writeString.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #include diff --git a/third-party/catch/CMakeLists.txt b/third-party/catch/CMakeLists.txt index 59515f54..5ff6bec6 100644 --- a/third-party/catch/CMakeLists.txt +++ b/third-party/catch/CMakeLists.txt @@ -1,5 +1,5 @@ # ArduinoJson - arduinojson.org -# Copyright Benoit Blanchon 2014-2018 +# Copyright Benoit Blanchon 2014-2019 # MIT License add_library(catch diff --git a/third-party/catch/catch.cpp b/third-party/catch/catch.cpp index 2eb9b09e..9b9214a6 100644 --- a/third-party/catch/catch.cpp +++ b/third-party/catch/catch.cpp @@ -1,5 +1,5 @@ // ArduinoJson - arduinojson.org -// Copyright Benoit Blanchon 2014-2018 +// Copyright Benoit Blanchon 2014-2019 // MIT License #define CATCH_CONFIG_MAIN