File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class Options
2727
2828 Architecture architecture;
2929 BOOL enableDpc;
30- BOOL enableAsan ;
30+ BOOL enableASAN ;
3131 BOOL excludeDeprecated;
3232 BOOL includeIncompatibleLicense;
3333 BOOL includeNonWindows;
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ void TargetPage::DoDataExchange(CDataExchange* pDX)
4949 DDX_Check (pDX,IDC_EXCLUDE_DEPRECATED,_options->excludeDeprecated );
5050 DDX_Check (pDX,IDC_INSTALLED_SUPPORT,_options->installedSupport );
5151 DDX_Check (pDX,IDC_ZERO_CONFIGURATION_SUPPORT,_options->zeroConfigurationSupport );
52- DDX_Check (pDX,IDC_ENABLE_ASAN,_options->enableAsan );
52+ DDX_Check (pDX,IDC_ENABLE_ASAN,_options->enableASAN );
5353}
5454
5555BOOL TargetPage::OnInitDialog ()
Original file line number Diff line number Diff line change @@ -690,7 +690,7 @@ void Project::writeProperties(wofstream &file) const
690690 file << " <ProjectName>" << fullName () << " </ProjectName>" << endl;
691691 file << " <ProjectGuid>{" << guid () << " }</ProjectGuid>" << endl;
692692 file << " <Keyword>" << _options.platform () << " Proj</Keyword>" << endl;
693- if (_options.enableAsan && !_options.isStaticBuild )
693+ if (_options.enableASAN && !_options.isStaticBuild )
694694 file << " <EnableASAN Condition=\" '$(Configuration)'=='Debug'\" >true</EnableASAN>" << endl;
695695 file << " </PropertyGroup>" << endl;
696696 file << " <Import Project=\" $(VCTargetsPath)\\ Microsoft.Cpp.Default.props\" />" << endl;
You can’t perform that action at this time.
0 commit comments