Browse Source

Simplified and shortened the names of internal functions in many cases.

Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
pull/862/head
Dimitar Dobrev 8 years ago
parent
commit
c3f5b596ce
  1. 2
      src/Generator/Generators/CSharp/CSharpSources.cs

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

@ -2998,7 +2998,7 @@ namespace CppSharp.Generators.CSharp @@ -2998,7 +2998,7 @@ namespace CppSharp.Generators.CSharp
identifier.Append(Helpers.GetSuffixFor(specialization));
var overloads = function.Namespace.GetOverloads(function)
.ToList();
.Where(f => f.IsGenerated).ToList();
var index = overloads.IndexOf(function);
if (index >= 0)

Loading…
Cancel
Save