From 8fca42afe549473d6ff32390b177e149f93a76d3 Mon Sep 17 00:00:00 2001 From: Dimitar Dobrev Date: Wed, 8 May 2019 15:59:07 +0300 Subject: [PATCH] Enable Clang-based look-up for system includes by default Signed-off-by: Dimitar Dobrev --- src/Parser/ParserOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Parser/ParserOptions.cs b/src/Parser/ParserOptions.cs index 601f51e1..4eee25b8 100644 --- a/src/Parser/ParserOptions.cs +++ b/src/Parser/ParserOptions.cs @@ -93,7 +93,7 @@ namespace CppSharp.Parser /// At the moment, it only makes a difference for MSVC targets. /// If its true, then we opt to use Clang's MSVC lookup logic. /// - public bool ForceClangToolchainLookup = false; + public bool ForceClangToolchainLookup = true; public ParserOptions BuildForSourceFile( IEnumerable modules, string file = null)