From b49637df93d5321f6f247ed4bc8faf0a7fcbc859 Mon Sep 17 00:00:00 2001 From: triton Date: Wed, 22 May 2013 16:31:30 +0100 Subject: [PATCH] Cosmetic changes. --- .../Generators/CSharp/CSharpTypePrinter.cs | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/Generator/Generators/CSharp/CSharpTypePrinter.cs b/src/Generator/Generators/CSharp/CSharpTypePrinter.cs index 3d15fdac..4ebbb396 100644 --- a/src/Generator/Generators/CSharp/CSharpTypePrinter.cs +++ b/src/Generator/Generators/CSharp/CSharpTypePrinter.cs @@ -171,8 +171,8 @@ namespace CppSharp.Generators.CSharp return pointee.Visit(this, quals); } - public CSharpTypePrinterResult VisitMemberPointerType( - MemberPointerType member, TypeQualifiers quals) + public CSharpTypePrinterResult VisitMemberPointerType(MemberPointerType member, + TypeQualifiers quals) { throw new NotImplementedException(); } @@ -243,19 +243,21 @@ namespace CppSharp.Generators.CSharp return param.Parameter.Name; } - public CSharpTypePrinterResult VisitTemplateParameterSubstitutionType(TemplateParameterSubstitutionType param, - TypeQualifiers quals) + public CSharpTypePrinterResult VisitTemplateParameterSubstitutionType( + TemplateParameterSubstitutionType param, TypeQualifiers quals) { var type = param.Replacement.Type; return type.Visit(this, param.Replacement.Qualifiers); } - public CSharpTypePrinterResult VisitInjectedClassNameType(InjectedClassNameType injected, TypeQualifiers quals) + public CSharpTypePrinterResult VisitInjectedClassNameType( + InjectedClassNameType injected, TypeQualifiers quals) { return injected.Class.Name; } - public CSharpTypePrinterResult VisitDependentNameType(DependentNameType dependent, TypeQualifiers quals) + public CSharpTypePrinterResult VisitDependentNameType(DependentNameType dependent, + TypeQualifiers quals) { throw new NotImplementedException(); }