diff --git a/autotest/Create/Create.cpp b/autotest/Create/Create.cpp index 3923de0a6..cb20a8112 100644 --- a/autotest/Create/Create.cpp +++ b/autotest/Create/Create.cpp @@ -40,15 +40,15 @@ void TestCreateT() Vector v; v.Add(12); // Copy-constructor - h.Create(v, 22); + h.template Create(v, 22); DDUMP(v.GetCount()); ASSERT(v.GetCount() == 1); // Move-constructor - h.Create(pick(v), 22); + h.template Create(pick(v), 22); DDUMP(v.GetCount()); ASSERT(v.GetCount() == 0); v.Add(21); - h.Create(clone(v), 22); + h.template Create(clone(v), 22); DDUMP(v.GetCount()); ASSERT(v.GetCount() == 1); } @@ -61,15 +61,15 @@ void TestCreateMap() Vector v; v.Add(12); // Copy-constructor - h.Create("a", v, 22); + h.template Create("a", v, 22); DDUMP(v.GetCount()); ASSERT(v.GetCount() == 1); // Move-constructor - h.Create("a", pick(v), 22); + h.template Create("a", pick(v), 22); DDUMP(v.GetCount()); ASSERT(v.GetCount() == 0); v.Add(21); - h.Create("a", clone(v), 22); + h.template Create("a", clone(v), 22); DDUMP(v.GetCount()); ASSERT(v.GetCount() == 1); }