From 4f1a179ba9b527754cac3065d38ec82c31ea8f1e Mon Sep 17 00:00:00 2001 From: triton Date: Fri, 9 Aug 2013 00:31:26 +0100 Subject: [PATCH] Respect the verbose option in the driver when calling the parser. --- src/Generator/Parser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator/Parser.cs b/src/Generator/Parser.cs index 28e46fcc..775d1730 100644 --- a/src/Generator/Parser.cs +++ b/src/Generator/Parser.cs @@ -44,7 +44,7 @@ namespace CppSharp { Library = Library, FileName = file, - Verbose = false, + Verbose = options.Verbose, IncludeDirs = options.IncludeDirs, SystemIncludeDirs = options.SystemIncludeDirs, Defines = options.Defines,