#ifndef CPP_JWT_SHORT_STRING_HPP #define CPP_JWT_SHORT_STRING_HPP #include #include "jwt/stack_alloc.hpp" namespace jwt { /* * A basic_string implementation using stack allocation. */ template using short_string = std::basic_string, stack_alloc>; } #endif