From 60bdf71ca811d4c1d248f061d0a0626ad82aedf6 Mon Sep 17 00:00:00 2001 From: triton Date: Thu, 24 Oct 2013 19:08:04 +0100 Subject: [PATCH] Use the project-level options for now instead of the file-specific options. --- src/Core/Parser/Parser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Parser/Parser.cs b/src/Core/Parser/Parser.cs index 62d76a41..7a1bd7f0 100644 --- a/src/Core/Parser/Parser.cs +++ b/src/Core/Parser/Parser.cs @@ -55,7 +55,7 @@ namespace CppSharp // TODO: Do multi-threaded parsing of source files foreach (var source in project.Sources) - ParseSourceFile(source, source.Options); + ParseSourceFile(source, options); } ///