Skip to content

Commit 059d699

Browse files
committed
Renamed option.
1 parent 347aa13 commit 059d699

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

src/Pages/TargetPage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

5555
BOOL TargetPage::OnInitDialog()

src/Project.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)