We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 697d4ff commit d13de28Copy full SHA for d13de28
cores/esp32/WString.h
@@ -35,8 +35,7 @@ class StringSumHelper;
35
// an abstract class used as a means to proide a unique pointer type
36
// but really has no body
37
class __FlashStringHelper;
38
-#define FPSTR(pstr_pointer) (reinterpret_cast<const __FlashStringHelper *>(pstr_pointer))
39
-#define F(string_literal) (FPSTR(PSTR(string_literal)))
+#define F(string_literal) (reinterpret_cast<const __FlashStringHelper *>(PSTR(string_literal)))
40
41
// The string class
42
class String {
0 commit comments