We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 328f707 commit c11e99dCopy full SHA for c11e99d
cores/esp32/WString.h
@@ -56,6 +56,9 @@ class String {
56
// be false).
57
String(const char *cstr = "");
58
String(const char *cstr, unsigned int length);
59
+#ifdef __GXX_EXPERIMENTAL_CXX0X__
60
+ String(const uint8_t *cstr, unsigned int length) : String((const char*)cstr, length) {}
61
+#endif
62
String(const String &str);
63
String(const __FlashStringHelper *str);
64
#ifdef __GXX_EXPERIMENTAL_CXX0X__
0 commit comments