From 67eba6dad42071a23ff30cc03993af05981d097d Mon Sep 17 00:00:00 2001 From: Tom Cook Date: Wed, 27 Jan 2016 12:41:50 +0000 Subject: [PATCH] Moved #include of --- src/PubSubClient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PubSubClient.h b/src/PubSubClient.h index 073a759..c41f03f 100755 --- a/src/PubSubClient.h +++ b/src/PubSubClient.h @@ -11,7 +11,6 @@ #include "IPAddress.h" #include "Client.h" #include "Stream.h" -#include #define MQTT_VERSION_3_1 3 #define MQTT_VERSION_3_1_1 4 @@ -67,6 +66,7 @@ #define MQTTQOS2 (2 << 1) #ifdef ESP8266 +#include #define MQTT_CALLBACK_SIGNATURE std::function callback #else #define MQTT_CALLBACK_SIGNATURE void (*callback)(char*, uint8_t*, uint32_t)