From: Steinar H. Gunderson Date: Sat, 19 Feb 2005 16:30:58 +0000 (+0000) Subject: Add default constructor for widestring. X-Git-Url: https://git.sesse.net/?p=ccbs;a=commitdiff_plain;h=00cc6937fb4d2d0525c90536697fc88eea3d0d6e Add default constructor for widestring. --- diff --git a/bigscreen/widestring.cpp b/bigscreen/widestring.cpp index 52b7f55..9193586 100644 --- a/bigscreen/widestring.cpp +++ b/bigscreen/widestring.cpp @@ -7,6 +7,10 @@ static iconv_t ucs4_iconv; static bool iconv_initialized = false; +widestring::widestring() +{ +} + widestring::widestring(const char *from) { *this = from; diff --git a/bigscreen/widestring.h b/bigscreen/widestring.h index 67f00b5..437428c 100644 --- a/bigscreen/widestring.h +++ b/bigscreen/widestring.h @@ -7,6 +7,7 @@ class widestring : public std::wstring { public: + widestring(); widestring(const char *from); void operator= (const char *from); };