We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87cb279 commit 721ed20Copy full SHA for 721ed20
api/String.h
@@ -66,6 +66,7 @@ class String
66
// be false).
67
String(const char *cstr = "");
68
String(const char *cstr, unsigned int length);
69
+ String(const uint8_t *cstr, unsigned int length) : String((const char*)cstr, length) {}
70
String(const String &str);
71
String(const __FlashStringHelper *str);
72
#if __cplusplus >= 201103L || defined(__GXX_EXPERIMENTAL_CXX0X__)
0 commit comments