We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf78968 commit 3209e07Copy full SHA for 3209e07
api/String.h
@@ -62,6 +62,7 @@ class String
62
// be false).
63
String(const char *cstr = "");
64
String(const char *cstr, unsigned int length);
65
+ String(const uint8_t *cstr, unsigned int length) : String((const char*)cstr, length) {}
66
String(const String &str);
67
String(const __FlashStringHelper *str);
68
#if __cplusplus >= 201103L || defined(__GXX_EXPERIMENTAL_CXX0X__)
0 commit comments