From de38b3a82a923861e959f26762d39373daf4e6af Mon Sep 17 00:00:00 2001 From: Arun M Date: Mon, 4 Dec 2017 13:23:08 +0530 Subject: [PATCH] Added short string type --- include/jwt/short_string.hpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 include/jwt/short_string.hpp diff --git a/include/jwt/short_string.hpp b/include/jwt/short_string.hpp new file mode 100644 index 0000000..da92d67 --- /dev/null +++ b/include/jwt/short_string.hpp @@ -0,0 +1,14 @@ +#ifndef CPP_JWT_SHORT_STRING_HPP +#define CPP_JWT_SHORT_STRING_HPP + +#include +#include "jwt/stack_alloc.hpp" + +namespace jwt { + +template +using short_string = std::basic_string, stack_alloc>; + +} + +#endif