| 86 | : string_n<FASTLED_STR_INLINED_SIZE>() {} |
| 87 | |
| 88 | string::string(const char* str) FL_NOEXCEPT |
| 89 | : string_n<FASTLED_STR_INLINED_SIZE>(str) {} |
| 90 | |
| 91 | string::string(const char* str, fl::size len) FL_NOEXCEPT |
| 92 | : string_n<FASTLED_STR_INLINED_SIZE>(str, len) {} |
no test coverage detected