Browse Source

Copy constructor P/Invokes are now generated in C# backend.

pull/45/merge
triton 12 years ago
parent
commit
d8adef816b
  1. 2
      src/Generator/Generators/CSharp/CSharpTextTemplate.cs

2
src/Generator/Generators/CSharp/CSharpTextTemplate.cs

@ -418,7 +418,7 @@ namespace CppSharp.Generators.CSharp @@ -418,7 +418,7 @@ namespace CppSharp.Generators.CSharp
foreach (var ctor in @class.Constructors)
{
if (ctor.IsCopyConstructor || ctor.IsMoveConstructor)
if (ctor.IsMoveConstructor)
continue;
tryAddOverload(ctor);

Loading…
Cancel
Save