Minor TString cleanup (also enable log terminal output in release mode)

This commit is contained in:
parax0
2015-11-24 08:40:09 -07:00
parent 5ffa24592c
commit 901ae6a832
3 changed files with 3 additions and 13 deletions

View File

@@ -72,11 +72,6 @@ public:
{
}
// Forward declares of some static functions that are handy for internal use
//static bool CompareCStrings(const CharType*, const CharType*);
//static u32 CStringLength(const CharType*);
//static bool IsWhitespace(CharType);
// Data Accessors
inline const CharType* CString() const
{
@@ -198,6 +193,7 @@ public:
_TString ToUpper() const
{
// todo: doesn't handle accented characters
_TString out(Size());
for (u32 iChar = 0; iChar < Size(); iChar++)
@@ -215,6 +211,7 @@ public:
_TString ToLower() const
{
// todo: doesn't handle accented characters
_TString out(Size());
for (u32 iChar = 0; iChar < Size(); iChar++)