Browse Source

Ignore std::shared_ptr while our template support is not yet finished.

pull/526/head
triton 10 years ago
parent
commit
a37f104262
  1. 2
      src/Generator/Types/Std/Stdlib.cs

2
src/Generator/Types/Std/Stdlib.cs

@ -289,6 +289,8 @@ namespace CppSharp.Types.Std @@ -289,6 +289,8 @@ namespace CppSharp.Types.Std
[TypeMap("std::shared_ptr")]
public class SharedPtr : TypeMap
{
public override bool IsIgnored { get { return true; } }
public override string CLISignature(CLITypePrinterContext ctx)
{
throw new System.NotImplementedException();

Loading…
Cancel
Save