From 7dca138287847998544eb29e0d76da3978461369 Mon Sep 17 00:00:00 2001 From: triton Date: Sat, 20 Jul 2013 03:05:44 +0100 Subject: [PATCH] Use fully qualified names in C# to minimize the chance of conflicts. --- src/Generator/Generators/CSharp/CSharpTypePrinter.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Generator/Generators/CSharp/CSharpTypePrinter.cs b/src/Generator/Generators/CSharp/CSharpTypePrinter.cs index 1f714e15..75edf910 100644 --- a/src/Generator/Generators/CSharp/CSharpTypePrinter.cs +++ b/src/Generator/Generators/CSharp/CSharpTypePrinter.cs @@ -389,9 +389,6 @@ namespace CppSharp.Generators.CSharp if (ctx is TranslationUnit) break; - if (ctx is Namespace) - break; - if (!string.IsNullOrWhiteSpace(ctx.Name)) names.Add(ctx.Name);