Browse Source

Remove end-line spaces

Urho3D[bot] 3 years ago
parent
commit
4636ee9099
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Source/Urho3D/Container/HashMap.h
  2. 1 1
      Source/Urho3D/Container/Str.cpp

+ 1 - 1
Source/Urho3D/Container/HashMap.h

@@ -492,7 +492,7 @@ public:
     {
         if (numBuckets == NumBuckets())
             return true;
-        
+
         if (!numBuckets || numBuckets < Size() / MAX_LOAD_FACTOR)
             return false;
 

+ 1 - 1
Source/Urho3D/Container/Str.cpp

@@ -293,7 +293,7 @@ String& String::Append(const char* str, i32 length)
 void String::Insert(i32 pos, const String& str)
 {
     assert(pos >= 0);
-    
+
     i32 length = Length();
 
     if (pos > length)