Use absolute instead of relative includes (fixes #1072)

This commit is contained in:
Benoit Blanchon
2019-08-26 11:57:57 +02:00
parent f5c25823bc
commit fcbec6eb6d
75 changed files with 246 additions and 206 deletions

View File

@@ -4,9 +4,9 @@
#pragma once
#include "../Configuration.hpp"
#include "../Operators/VariantOperators.hpp"
#include "../Polyfills/type_traits.hpp"
#include <ArduinoJson/Configuration.hpp>
#include <ArduinoJson/Operators/VariantOperators.hpp>
#include <ArduinoJson/Polyfills/type_traits.hpp>
#ifdef _MSC_VER
#pragma warning(push)

View File

@@ -4,7 +4,7 @@
#pragma once
#include "../Collection/CollectionData.hpp"
#include <ArduinoJson/Collection/CollectionData.hpp>
namespace ARDUINOJSON_NAMESPACE {

View File

@@ -4,8 +4,8 @@
#pragma once
#include "../Array/ArrayRef.hpp"
#include "ObjectRef.hpp"
#include <ArduinoJson/Array/ArrayRef.hpp>
#include <ArduinoJson/Object/ObjectRef.hpp>
namespace ARDUINOJSON_NAMESPACE {

View File

@@ -4,8 +4,8 @@
#pragma once
#include "../Variant/SlotFunctions.hpp"
#include "Pair.hpp"
#include <ArduinoJson/Object/Pair.hpp>
#include <ArduinoJson/Variant/SlotFunctions.hpp>
namespace ARDUINOJSON_NAMESPACE {

View File

@@ -4,8 +4,8 @@
#pragma once
#include "ObjectFunctions.hpp"
#include "ObjectIterator.hpp"
#include <ArduinoJson/Object/ObjectFunctions.hpp>
#include <ArduinoJson/Object/ObjectIterator.hpp>
// Returns the size (in bytes) of an object with n elements.
// Can be very handy to determine the size of a StaticMemoryPool.

View File

@@ -4,9 +4,9 @@
#pragma once
#include "../Polyfills/attributes.hpp"
#include "../Polyfills/type_traits.hpp"
#include "../Strings/StringAdapters.hpp"
#include <ArduinoJson/Polyfills/attributes.hpp>
#include <ArduinoJson/Polyfills/type_traits.hpp>
#include <ArduinoJson/Strings/StringAdapters.hpp>
namespace ARDUINOJSON_NAMESPACE {
template <typename TParent, typename TStringRef>

View File

@@ -4,8 +4,8 @@
#pragma once
#include "../Strings/String.hpp"
#include "../Variant/VariantRef.hpp"
#include <ArduinoJson/Strings/String.hpp>
#include <ArduinoJson/Variant/VariantRef.hpp>
namespace ARDUINOJSON_NAMESPACE {
// A key value pair for CollectionData.