avr-stl
avr-stl copied to clipboard
Update stl_map.h
Fixed "reference to 'map' is ambiguous" when using mapping code segment, for example "map<string,int>hash;“ will cause error.So I need to use "std::map<string,int>hash;". In Arduino, if someone use "Map" instead of "std::map", it may be more concise, just like "Java Map".