Эх сурвалжийг харах

std forward in list and hashmap emplace

Kajetan Johannes Hammerle 4 жил өмнө
parent
commit
3584edee83
3 өөрчлөгдсөн 7 нэмэгдсэн , 2 устгасан
  1. 5 0
      math/Vector.h
  2. 1 1
      utils/HashMap.h
  3. 1 1
      utils/List.h

+ 5 - 0
math/Vector.h

@@ -15,6 +15,11 @@ public:
         }
     }
 
+    /*template<typename... Args>
+    Vector(Args&&... args) {
+        args.
+    }*/
+
     Vector(float, float) = delete;
     Vector(float, float, float) = delete;
     Vector(float, float, float, float) = delete;

+ 1 - 1
utils/HashMap.h

@@ -96,7 +96,7 @@ public:
         if(s.result == FREE_INDEX_FOUND) {
             used[s.index] = keys.getLength();
             keys.add(key);
-            values.add(args...);
+            values.add(std::forward<Args>(args)...);
             return false;
         }
         return true;

+ 1 - 1
utils/List.h

@@ -102,7 +102,7 @@ public:
         if(length >= N) {
             return *this;
         }
-        new (end()) T(args...);
+        new (end()) T(std::forward<Args>(args)...);
         length++;
         return *this;
     }