From e05ede4b35df6f4f2939a03541cc397a28b8a12f Mon Sep 17 00:00:00 2001 From: triton Date: Mon, 12 Aug 2013 17:11:02 +0100 Subject: [PATCH] Added a stub for std::vector creation. --- src/Runtime/StdVector.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Runtime/StdVector.cs b/src/Runtime/StdVector.cs index 60373b6f..21677b63 100644 --- a/src/Runtime/StdVector.cs +++ b/src/Runtime/StdVector.cs @@ -25,6 +25,14 @@ using System.Collections.Generic; namespace Std { + public struct Vector + { + static public Vector Create(Vector vec) + { + return default(Vector); + } + } + public struct Vector : ICollection { public IEnumerator GetEnumerator()