Do not use namespace using-directives. Use using-declarations instead.

This commit is contained in:
Thomas Basler
2022-09-13 21:35:51 +02:00
parent 66c28a2e6e
commit de33b9ff88
16 changed files with 26 additions and 22 deletions

View File

@@ -12,7 +12,7 @@
void WebApiMqttClass::init(AsyncWebServer* server)
{
using namespace std::placeholders;
using std::placeholders::_1;
_server = server;