// ArduinoJson - arduinojson.org // Copyright Benoit Blanchon 2014-2018 // MIT License #pragma once namespace ArduinoJson { namespace Internals { // A meta-function that return the type T if Condition is true. template struct EnableIf {}; template struct EnableIf { typedef T type; }; } }