diff options
Diffstat (limited to 'src/strings/vstring.hpp')
-rw-r--r-- | src/strings/vstring.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/strings/vstring.hpp b/src/strings/vstring.hpp index 183e782..c467b64 100644 --- a/src/strings/vstring.hpp +++ b/src/strings/vstring.hpp @@ -65,6 +65,14 @@ namespace strings int do_vprint(VString<len>& out, const char *fmt, va_list ap); } // namespace strings +template<class T> +T stringish(VString<sizeof(T) - 1> iv) +{ + T rv; + static_cast<VString<sizeof(T) - 1>&>(rv) = iv; + return rv; +} + # include "vstring.tcc" #endif // TMWA_STRINGS_VSTRING_HPP |