summaryrefslogtreecommitdiff
path: root/Source/cmGlobalVisualStudio8Generator.cxx
diff options
context:
space:
mode:
authorStephan Szabo <stephan.szabo@sony.com>2018-11-20 10:09:57 -0800
committerStephan Szabo <stephan.szabo@sony.com>2018-11-28 07:43:25 -0800
commit8279302110ee6eb09a16e33b3bf8f8ad4ee13b73 (patch)
tree8d99ec1e7fac777833a6a4421e12728fe2a15586 /Source/cmGlobalVisualStudio8Generator.cxx
parent139b39985f26d4517072d49715c3dfd50a0d7001 (diff)
downloadcmake-8279302110ee6eb09a16e33b3bf8f8ad4ee13b73.tar.gz
Convert cmIDEFlagTable to use owned strings
Convert from char* to std::string in flag tables. Change termination condition from nullptr to empty string in command flag. Update tables to store empty strings.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio8Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx
index b155d9ca7e..097d7e28f1 100644
--- a/Source/cmGlobalVisualStudio8Generator.cxx
+++ b/Source/cmGlobalVisualStudio8Generator.cxx
@@ -362,7 +362,7 @@ static cmVS7FlagTable cmVS8ExtraFlagTable[] = {
{ "TreatWChar_tAsBuiltInType", "Zc:wchar_t-",
"wchar_t is not a built-in type", "false", 0 },
- { 0, 0, 0, 0, 0 }
+ { "", "", "", "", 0 }
};
cmIDEFlagTable const* cmGlobalVisualStudio8Generator::GetExtraFlagTableVS8()
{