Преглед на файлове

Rename Vector::Emplace to Vector::EmplaceBack.

Eugene Kozlov преди 7 години
родител
ревизия
9c25ad9f97
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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.
-    template <class... Args> T& Emplace(Args&&... args)
+    template <class... Args> T& EmplaceBack(Args&&... args)
     {
         if (size_ < capacity_)
         {