Browse Source

Added a stub for std::vector creation.

pull/28/head
triton 12 years ago
parent
commit
e05ede4b35
  1. 8
      src/Runtime/StdVector.cs

8
src/Runtime/StdVector.cs

@ -25,6 +25,14 @@ using System.Collections.Generic; @@ -25,6 +25,14 @@ using System.Collections.Generic;
namespace Std
{
public struct Vector
{
static public Vector Create<T>(Vector<T> vec)
{
return default(Vector);
}
}
public struct Vector<T> : ICollection<T>
{
public IEnumerator<T> GetEnumerator()

Loading…
Cancel
Save