update ArxContainer to v0.3.10
This commit is contained in:
parent
6c4e0278c8
commit
0d6444ca51
@ -254,7 +254,7 @@ Please use only sender OR receiver.
|
||||
|
||||
## Embedded Libraries
|
||||
|
||||
- [ArxContainer v0.3.9](https://github.com/hideakitai/ArxContainer)
|
||||
- [ArxContainer v0.3.10](https://github.com/hideakitai/ArxContainer)
|
||||
- [ArxTypeTraits v0.2.0](https://github.com/hideakitai/ArxTypeTraits)
|
||||
- [TeensyDirtySTLErrorSolution v0.1.0](https://github.com/hideakitai/TeensyDirtySTLErrorSolution)
|
||||
|
||||
|
@ -10,7 +10,9 @@
|
||||
#include "ArxContainer/has_include.h"
|
||||
#include "ArxContainer/has_libstdcplusplus.h"
|
||||
|
||||
#include <Arduino.h>
|
||||
#ifdef ARDUINO
|
||||
#include <Arduino.h>
|
||||
#endif
|
||||
|
||||
#include "ArxContainer/replace_minmax_macros.h"
|
||||
#include "ArxContainer/initializer_list.h"
|
||||
|
@ -6,7 +6,9 @@
|
||||
// Make sure Arduino.h is actually included, since otherwise it might be
|
||||
// included later and break *uses* of the min/max methods, rather than
|
||||
// the declarations of it.
|
||||
#include <Arduino.h>
|
||||
#ifdef ARDUINO
|
||||
#include <Arduino.h>
|
||||
#endif
|
||||
|
||||
// These macros are defined by Arduino.h on some platforms, and conflict
|
||||
// with min/max methods defined or included by ArxTypeTraits, so replace
|
||||
|
@ -165,6 +165,8 @@ PRs are welcome!
|
||||
- [TimeProfiler](https://github.com/hideakitai/TimeProfiler)
|
||||
- [SceneManager](https://github.com/hideakitai/SceneManager)
|
||||
- [TaskManager](https://github.com/hideakitai/TaskManager)
|
||||
- [ArxStringUtils](https://github.com/hideakitai/ArxStringUtils)
|
||||
- [Debouncer](https://github.com/hideakitai/Debouncer)
|
||||
|
||||
|
||||
## License
|
||||
|
@ -11,7 +11,7 @@
|
||||
"url": "https://github.com/hideakitai",
|
||||
"maintainer": true
|
||||
},
|
||||
"version": "0.3.9",
|
||||
"version": "0.3.10",
|
||||
"license": "MIT",
|
||||
"frameworks": "arduino",
|
||||
"platforms": "*"
|
||||
|
@ -1,5 +1,5 @@
|
||||
name=ArxContainer
|
||||
version=0.3.9
|
||||
version=0.3.10
|
||||
author=hideakitai
|
||||
maintainer=hideakitai
|
||||
sentence=C++ container-like classes (vector, map, etc.) for Arduino which cannot use STL
|
||||
|
Loading…
Reference in New Issue
Block a user