Browse Source

Remove end-line spaces

Urho3D[bot] 3 years ago
parent
commit
07bd74a922
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Source/Urho3D/Container/Allocator.cpp
  2. 1 1
      Source/Urho3D/Container/HashSet.h

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

@@ -39,7 +39,7 @@ static AllocatorBlock* AllocatorReserveBlock(AllocatorBlock* allocator, i32 node
         newNode->next_ = reinterpret_cast<AllocatorNode*>(nodePtr + sizeof(AllocatorNode) + nodeSize);
         newNode->next_ = reinterpret_cast<AllocatorNode*>(nodePtr + sizeof(AllocatorNode) + nodeSize);
         nodePtr += sizeof(AllocatorNode) + nodeSize;
         nodePtr += sizeof(AllocatorNode) + nodeSize;
     }
     }
-    
+
     // i == capacity - 1
     // i == capacity - 1
     {
     {
         AllocatorNode* newNode = reinterpret_cast<AllocatorNode*>(nodePtr);
         AllocatorNode* newNode = reinterpret_cast<AllocatorNode*>(nodePtr);

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

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