avr-stl icon indicating copy to clipboard operation
avr-stl copied to clipboard

The C++ Standard Template Library for the Arduino

Results 4 avr-stl issues
Sort by recently updated
recently updated
newest added

Fixed "reference to 'map' is ambiguous" when using mapping code segment, for example "maphash;“ will cause error.So I need to use "std::maphash;". In Arduino, if someone use "Map" instead of...

I have just begun using this library and the first thing I tried is, compiling the string example given in this repository. i.e, ``` #include #include #include #include /* *...

I'm trying to just include `` for a basic test and I get the following compiler error: In file included from /opt/arduino-1.8.7/hardware/tools/avr/avr/include/stl_algobase.h:64:0, from /opt/arduino-1.8.7/hardware/tools/avr/avr/include/vector:31, from /tmp/arduino_modified_sketch_766904/sketch_oct20a.ino:1: /opt/arduino-1.8.7/hardware/tools/avr/avr/include/stl_iterator.h:589:48: error: 'char_traits' does...

The iterator increment method for a Red-Black Tree has an edge case that fails to change the node pointer. If the current node of the iterator is the root and...