Browse Source

FindNamespace now takes an IEnumerable instead of array.

pull/1/head
triton 12 years ago
parent
commit
cf002fb007
  1. 2
      src/Bridge/Namespace.cs

2
src/Bridge/Namespace.cs

@ -51,7 +51,7 @@ namespace CppSharp @@ -51,7 +51,7 @@ namespace CppSharp
return FindNamespace(namespaces);
}
public Namespace FindNamespace(string[] namespaces)
public Namespace FindNamespace(IEnumerable<string> namespaces)
{
DeclarationContext currentNamespace = this;

Loading…
Cancel
Save