From 76cf2886c1e6ac56a524ccea3f6fba6d5e8eef75 Mon Sep 17 00:00:00 2001 From: triton Date: Mon, 15 Jul 2013 21:13:26 +0100 Subject: [PATCH] Add the generated output to the list of outputs when generating. --- src/Generator/Generators/Generator.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Generator/Generators/Generator.cs b/src/Generator/Generators/Generator.cs index e47acc6c..47ab0fa8 100644 --- a/src/Generator/Generators/Generator.cs +++ b/src/Generator/Generators/Generator.cs @@ -85,6 +85,7 @@ namespace CppSharp.Generators TranslationUnit = unit, Templates = templates }; + outputs.Add(output); OnUnitGenerated(output); }