From 055a53f15cc97072d959623470db9d5fad7cffae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Blanchon?= Date: Thu, 24 Nov 2016 13:58:14 +0100 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 1 - 1 file changed, 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index 5a5f3c3..f7eca86 100644 --- a/FAQ.md +++ b/FAQ.md @@ -852,7 +852,6 @@ error: ambiguous overload for 'operator=' (operand types are 'String' and 'Ardui The solution is to remove the ambiguity with any of the following replacement: ```c++ -ssid = (String)network["ssid"]; ssid = (const char*)network["ssid"]; ssid = network["ssid"].asString(); ssid = network["ssid"].as();