Browse Source

Enable Clang-based look-up for system includes by default

Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
pull/1224/head
Dimitar Dobrev 6 years ago
parent
commit
8fca42afe5
  1. 2
      src/Parser/ParserOptions.cs

2
src/Parser/ParserOptions.cs

@ -93,7 +93,7 @@ namespace CppSharp.Parser @@ -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.
/// </summary>
public bool ForceClangToolchainLookup = false;
public bool ForceClangToolchainLookup = true;
public ParserOptions BuildForSourceFile(
IEnumerable<CppSharp.AST.Module> modules, string file = null)

Loading…
Cancel
Save