mirror of
https://github.com/luc-github/ESP3D.git
synced 2026-03-08 08:56:48 +01:00
Change LinkedList to GenLinkedList to avoid conflict
like with AsyncWebServer library
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
#include <WiFiUdp.h>
|
||||
#include <ESP8266WiFi.h>
|
||||
#include <ESP8266WebServer.h>
|
||||
#include "LinkedList.h"
|
||||
#include "GenLinkedList.h"
|
||||
#include "storestrings.h"
|
||||
#include "command.h"
|
||||
#include "bridge.h"
|
||||
@@ -220,7 +220,7 @@ bool WEBINTERFACE_CLASS::processTemplate(const char * filename, STORESTRINGS_CL
|
||||
return false;
|
||||
}
|
||||
|
||||
LinkedList<FSFILE> myFileList = LinkedList<FSFILE>();
|
||||
GenLinkedList<FSFILE> myFileList = GenLinkedList<FSFILE>();
|
||||
String buffer2send;
|
||||
bool header_sent=false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user