Updated FAQ (markdown)

Benoît Blanchon
2016-11-24 13:58:14 +01:00
parent fc163a4acd
commit 055a53f15c

1
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: The solution is to remove the ambiguity with any of the following replacement:
```c++ ```c++
ssid = (String)network["ssid"];
ssid = (const char*)network["ssid"]; ssid = (const char*)network["ssid"];
ssid = network["ssid"].asString(); ssid = network["ssid"].asString();
ssid = network["ssid"].as<const char*>(); ssid = network["ssid"].as<const char*>();