Trailing whitespaces removed.

This commit is contained in:
Dario Manesku
2014-05-11 18:06:51 +01:00
parent 6360f777ec
commit 1979f18ece
2 changed files with 2 additions and 3 deletions

View File

@@ -111,7 +111,6 @@ namespace bx
return false;
}
bool hasArg(bool& _value, const char _short, const char* _long = NULL) const
{
const char* arg = findOption(_short, _long, 1);

View File

@@ -52,7 +52,7 @@ namespace bx
const char* cmp = _find + 1;
size_t len = strlen(cmp);
do
do
{
for (char match = *_str++; match != first && 0 < _size; match = *_str++, --_size)
{
@@ -66,7 +66,7 @@ namespace bx
{
return NULL;
}
} while (0 != strncmp(_str, cmp, len) );
return --_str;