Change LinkedList to GenLinkedList to avoid conflict

like with AsyncWebServer library
This commit is contained in:
Luc
2016-11-30 10:57:21 +01:00
parent a40192fe67
commit d9ad1f9d3d
3 changed files with 28 additions and 28 deletions

View File

@@ -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;