Whitespace and pointer cleanup.
This commit is contained in:
parent
6fc0b8dca8
commit
a03eb9599f
32 changed files with 441 additions and 468 deletions
|
@ -4,14 +4,14 @@
|
|||
|
||||
bool StringUtils::IsAlphaNumeric(char c)
|
||||
{
|
||||
std::locale loc;
|
||||
return std::isalnum(c, loc);
|
||||
std::locale loc;
|
||||
return std::isalnum(c, loc);
|
||||
}
|
||||
|
||||
bool StringUtils::IsSpace(char c)
|
||||
{
|
||||
std::locale loc;
|
||||
return std::isspace(c, loc);
|
||||
std::locale loc;
|
||||
return std::isspace(c, loc);
|
||||
}
|
||||
|
||||
std::string StringUtils::ToLower(const std::string& s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue