From 035c3707e580ade534b312e86959a45efced0115 Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Mon, 6 Feb 2017 12:48:45 +0000 Subject: [PATCH] Rename template variable. --- src/Generator/Generators/CSharp/CSharpGenerator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Generator/Generators/CSharp/CSharpGenerator.cs b/src/Generator/Generators/CSharp/CSharpGenerator.cs index 03b76c07..8b8851cd 100644 --- a/src/Generator/Generators/CSharp/CSharpGenerator.cs +++ b/src/Generator/Generators/CSharp/CSharpGenerator.cs @@ -19,8 +19,8 @@ namespace CppSharp.Generators.CSharp { var outputs = new List(); - var template = new CSharpSources(Context, units, typePrinter, expressionPrinter); - outputs.Add(template); + var gen = new CSharpSources(Context, units, typePrinter, expressionPrinter); + outputs.Add(gen); return outputs; }