فهرست منبع

Trailing whitespaces removed.

Dario Manesku 11 سال پیش
والد
کامیت
1979f18ece
2فایلهای تغییر یافته به همراه2 افزوده شده و 3 حذف شده
  1. 0 1
      include/bx/commandline.h
  2. 2 2
      include/bx/string.h

+ 0 - 1
include/bx/commandline.h

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

+ 2 - 2
include/bx/string.h

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