From a4c8883244080cb7774cac2d64c3534173d952f4 Mon Sep 17 00:00:00 2001 From: triton Date: Sat, 19 Oct 2013 15:37:11 +0100 Subject: [PATCH] Formatting change. --- src/AST/Method.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/AST/Method.cs b/src/AST/Method.cs index aee33cb8..883a22a9 100644 --- a/src/AST/Method.cs +++ b/src/AST/Method.cs @@ -152,7 +152,8 @@ namespace CppSharp.AST var instance = new Parameter { Name = "instance", - QualifiedType = new QualifiedType(new BuiltinType(PrimitiveType.IntPtr)) + QualifiedType = new QualifiedType( + new BuiltinType(PrimitiveType.IntPtr)) }; functionType.Parameters.Insert(0, instance); }