[Common] fixed spacing in StdString.cpp

This commit is contained in:
zilmar 2016-01-18 19:48:52 +11:00
parent 957a29fac1
commit a44626855f
1 changed files with 4 additions and 3 deletions

View File

@ -4,22 +4,23 @@
#ifdef _WIN32 #ifdef _WIN32
#include <Windows.h> #include <Windows.h>
#endif #endif
stdstr::stdstr() stdstr::stdstr()
{ {
} }
stdstr::stdstr(const std::string & str) : stdstr::stdstr(const std::string & str) :
std::string(str) std::string(str)
{ {
} }
stdstr::stdstr(const stdstr & str) : stdstr::stdstr(const stdstr & str) :
std::string((const std::string &)str) std::string((const std::string &)str)
{ {
} }
stdstr::stdstr(const char * str) : stdstr::stdstr(const char * str) :
std::string(str ? str : "") std::string(str ? str : "")
{ {
} }