From 3aea084f2b5d7ed072f7e620784da320714c4ec8 Mon Sep 17 00:00:00 2001 From: Tomasz Grabiec Date: Thu, 12 Feb 2015 16:53:54 +0100 Subject: [PATCH] types: Add sstring_view type alias --- types.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/types.hh b/types.hh index 839b2f0233..1d48fc56ce 100644 --- a/types.hh +++ b/types.hh @@ -20,6 +20,7 @@ using bytes = basic_sstring; using bytes_view = std::experimental::string_view; using bytes_opt = std::experimental::optional; +using sstring_view = std::experimental::string_view; sstring to_hex(const bytes& b); sstring to_hex(const bytes_opt& b);