mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-10-20 01:35:24 +02:00
Previous __FlashStringHelper implementation was defines as a char which brought problem in case the method with char* parameter used overloading with __FlashStringHelper* parameter (they was identical). Now __FlashStringHelper is defined as a class and all casts between char* and __FlashStringHelper* are made with reinterpret_cast sugar.