Browse Source

Rename Vector::Emplace to Vector::EmplaceBack.

Eugene Kozlov 7 years ago
parent
commit
9c25ad9f97
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/Urho3D/Container/Vector.h

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

@@ -214,7 +214,7 @@ public:
     }
     }
 
 
     /// Create an element at the end.
     /// Create an element at the end.
-    template <class... Args> T& Emplace(Args&&... args)
+    template <class... Args> T& EmplaceBack(Args&&... args)
     {
     {
         if (size_ < capacity_)
         if (size_ < capacity_)
         {
         {