From b70f4d64833aa3e95eef81f66f81ecfd9247be99 Mon Sep 17 00:00:00 2001 From: triton Date: Wed, 6 Feb 2013 22:14:48 +0000 Subject: [PATCH] Rename toolSetToUse to ToolSetToUse. --- src/Generator/Parser.cs | 2 +- src/Parser/Parser.cpp | 2 +- src/Parser/Parser.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Generator/Parser.cs b/src/Generator/Parser.cs index 6dbf48ab..71cd1889 100644 --- a/src/Generator/Parser.cs +++ b/src/Generator/Parser.cs @@ -29,7 +29,7 @@ namespace Cxxi Verbose = false, IncludeDirs = options.IncludeDirs, Defines = options.Defines, - toolSetToUse = options.ToolsetToUse + ToolSetToUse = options.ToolsetToUse }; var result = ClangParser.Parse(parserOptions); diff --git a/src/Parser/Parser.cpp b/src/Parser/Parser.cpp index a22691c1..8fa8211e 100644 --- a/src/Parser/Parser.cpp +++ b/src/Parser/Parser.cpp @@ -135,7 +135,7 @@ void Parser::Setup(ParserOptions^ Opts) #ifdef _MSC_VER std::vector SystemDirs; - if( GetVisualStudioEnv("INCLUDE", SystemDirs, Opts->toolSetToUse, Opts->toolSetToUse ) ) + if(GetVisualStudioEnv("INCLUDE", SystemDirs, Opts->ToolSetToUse, Opts->ToolSetToUse)) { clang::HeaderSearchOptions& HSOpts = C->getHeaderSearchOpts(); diff --git a/src/Parser/Parser.h b/src/Parser/Parser.h index bf3c9341..698ad10f 100644 --- a/src/Parser/Parser.h +++ b/src/Parser/Parser.h @@ -50,7 +50,7 @@ public ref struct ParserOptions Cxxi::Library^ Library; // Toolset version - 2005 - 8, 2008 - 9, 2010 - 10, 0 - autoprobe for any. - int toolSetToUse; + int ToolSetToUse; bool Verbose; };