mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-14 11:06:35 +02:00
13 lines
277 B
C++
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);
|
||
|
}
|