diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2021-05-12 09:26:23 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2021-05-12 09:26:23 +0200 |
commit | 789986a05bd03935f1c344dc03ffaff36c8e7cdb (patch) | |
tree | 65b308c6705110aeb7853a10e44e0e6d7de6ed49 /include/lib/ArduinoJson/Memory | |
parent | 39895a677e5d370824e702cfe90ebc67737b8482 (diff) |
Make ArduinoJson work with MSP430 headers
Diffstat (limited to 'include/lib/ArduinoJson/Memory')
-rw-r--r-- | include/lib/ArduinoJson/Memory/Alignment.hpp | 2 | ||||
-rw-r--r-- | include/lib/ArduinoJson/Memory/MemoryPool.hpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/include/lib/ArduinoJson/Memory/Alignment.hpp b/include/lib/ArduinoJson/Memory/Alignment.hpp index bf16798..e1fe4c2 100644 --- a/include/lib/ArduinoJson/Memory/Alignment.hpp +++ b/include/lib/ArduinoJson/Memory/Alignment.hpp @@ -4,7 +4,7 @@ #pragma once -#include <ArduinoJson/Namespace.hpp> +#include "lib/ArduinoJson/Namespace.hpp" #include <stddef.h> // size_t diff --git a/include/lib/ArduinoJson/Memory/MemoryPool.hpp b/include/lib/ArduinoJson/Memory/MemoryPool.hpp index 49debf8..d2c8926 100644 --- a/include/lib/ArduinoJson/Memory/MemoryPool.hpp +++ b/include/lib/ArduinoJson/Memory/MemoryPool.hpp @@ -4,10 +4,10 @@ #pragma once -#include <ArduinoJson/Memory/Alignment.hpp> -#include <ArduinoJson/Polyfills/assert.hpp> -#include <ArduinoJson/Polyfills/mpl/max.hpp> -#include <ArduinoJson/Variant/VariantSlot.hpp> +#include "lib/ArduinoJson/Memory/Alignment.hpp" +#include "lib/ArduinoJson/Polyfills/assert.hpp" +#include "lib/ArduinoJson/Polyfills/mpl/max.hpp" +#include "lib/ArduinoJson/Variant/VariantSlot.hpp" #include <string.h> // memmove |