diff options
author | Stephan Szabo <stephan.szabo@sony.com> | 2018-11-20 18:09:57 (GMT) |
---|---|---|
committer | Stephan Szabo <stephan.szabo@sony.com> | 2018-11-28 15:43:25 (GMT) |
commit | 8279302110ee6eb09a16e33b3bf8f8ad4ee13b73 (patch) | |
tree | 8d99ec1e7fac777833a6a4421e12728fe2a15586 /Source/cmVS141CSharpFlagTable.h | |
parent | 139b39985f26d4517072d49715c3dfd50a0d7001 (diff) | |
download | CMake-8279302110ee6eb09a16e33b3bf8f8ad4ee13b73.zip CMake-8279302110ee6eb09a16e33b3bf8f8ad4ee13b73.tar.gz CMake-8279302110ee6eb09a16e33b3bf8f8ad4ee13b73.tar.bz2 |
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/cmVS141CSharpFlagTable.h')
-rw-r--r-- | Source/cmVS141CSharpFlagTable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVS141CSharpFlagTable.h b/Source/cmVS141CSharpFlagTable.h index 1f84097..7688dba 100644 --- a/Source/cmVS141CSharpFlagTable.h +++ b/Source/cmVS141CSharpFlagTable.h @@ -122,5 +122,5 @@ static cmVS7FlagTable cmVS141CSharpFlagTable[] = { { "ErrorReport", "errorreport:queue", "Queue For Next Login", "queue", 0 }, { "ErrorReport", "errorreport:send", "Send Automatically", "send", 0 }, - { 0, 0, 0, 0, 0 }, + { "", "", "", "", 0 }, }; |