mirror of
https://github.com/me-no-dev/ESPAsyncWebServer.git
synced 2026-01-26 08:42:19 +01:00
AsyncWebServerRequest::_params replace with STL container
- LinkedList<AsyncWebRewrite*> _rewrites; + std::list<std::shared_ptr<AsyncWebRewrite> > _rewrites;
This commit is contained in:
committed by
Mathieu Carbou
parent
aefc4a0f4e
commit
d5c2af8dc2
@@ -705,8 +705,8 @@ const AsyncWebParameter* AsyncWebServerRequest::getParam(const String& name, boo
|
||||
}
|
||||
|
||||
#ifdef ESP8266
|
||||
AsyncWebParameter* AsyncWebServerRequest::getParam(const __FlashStringHelper * data, bool post, bool file) const {
|
||||
return getParam(String(data).c_str(), post, file);
|
||||
const AsyncWebParameter* AsyncWebServerRequest::getParam(const __FlashStringHelper * data, bool post, bool file) const {
|
||||
return getParam(String(data), post, file);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user