Files
nuki_hub/lib/ArduinoJson/extras/tests/Helpers/Literals.hpp
iranl 9d55c2173d Update ArduinoJSON, esp-nimble-cpp, Arduino Core, ESP-IDF (#448)
* ArduinoJSON 7.1.0

* Update nimble and arduino core

* Update nuki_ble
2024-08-11 16:20:31 +07:00

13 lines
277 B
C++

// ArduinoJson - https://arduinojson.org
// Copyright © 2014-2024, Benoit BLANCHON
// MIT License
#pragma once
#include <string>
// the space before _s is required by GCC 4.8
inline std::string operator"" _s(const char* str, size_t len) {
return std::string(str, len);
}