mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-17 12:02:15 +03:00
fix http parsing (#5262)
* follows #5252 * use const refs where relevant (aka stop being nasty with ram and cpu)
This commit is contained in:
@ -796,3 +796,7 @@ float String::toFloat(void) const {
|
||||
return atof(buffer);
|
||||
return 0;
|
||||
}
|
||||
|
||||
// global empty string to allow returning const String& with nothing
|
||||
|
||||
const String emptyString;
|
||||
|
Reference in New Issue
Block a user