Literals.hpp 277 B

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