Conversation
I tested that this compiles for Arduino UNO, including vectors with integral and non-integral types.
This requires a pull request be merged to ArduinoSTL before it will build on AVR-based platforms (e.g. UNO). mike-matera/ArduinoSTL#52
This requires a pull request be merged to ArduinoSTL before it will build on AVR-based platforms (e.g. UNO). mike-matera/ArduinoSTL#52
|
Hello! Thank you! I'm concerned that this takes away the |
|
@mike-matera What's your take on adding new (C++11) features to this library? In previous incarnations of this library, I think there was a tendency to stick to uclibc++ as much as possible and only make Arduino-specific changes. One downside of adding new C++11 features is that the available features become more fragmented, with some of them supported but not all of them, making it also harder for another library to add C++11 features (i.e. risk of duplication). One example of such a library is https://github.com/hideakitai/ArxTypeTraits, which was originally intended to add just the C++11 |
I tested that this compiles for Arduino UNO, including vectors with
integral and non-integral types.