From 4854242918d70f5f6a86e344753047f0aec76c18 Mon Sep 17 00:00:00 2001 From: q66 Date: Sun, 20 Mar 2016 20:23:26 +0000 Subject: [PATCH] typo fix --- ostd/string.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ostd/string.hh b/ostd/string.hh index d237f72..4235e10 100644 --- a/ostd/string.hh +++ b/ostd/string.hh @@ -863,7 +863,7 @@ public: s.p_buf = nullptr; s.p_allocated = false; } - TempCString(CharRangeBase input, char *sbuf, Size bufsize) + TempCString(CharRangeBase input, T *sbuf, Size bufsize) : p_buf(nullptr), p_allocated(false) { if (!input.size()) return; if (input.size() >= bufsize) {