custom_string.hpp 316 B

12345678910111213
  1. // ArduinoJson - arduinojson.org
  2. // Copyright Benoit Blanchon 2014-2021
  3. // MIT License
  4. #pragma once
  5. #include <string>
  6. struct custom_char_traits : std::char_traits<char> {};
  7. struct custom_allocator : std::allocator<char> {};
  8. typedef std::basic_string<char, custom_char_traits, custom_allocator>
  9. custom_string;