VS: Add flag table entry for "permissive" flag to disable conformance mode

This flag is required to disable conformance mode on specific sources
when it is otherwise enabled on most sources.
This commit is contained in:
Jonathan Storey 2018-12-10 11:59:22 +00:00
parent 4b513c0ca3
commit e0d6d01e52

View File

@ -812,10 +812,17 @@
{
"name": "ConformanceMode",
"switch": "permissive-",
"comment": "Conformance mode",
"comment": "Conformance mode enabled",
"value": "true",
"flags": []
},
{
"name": "ConformanceMode",
"switch": "permissive",
"comment": "Conformance mode disabled",
"value": "false",
"flags": []
},
{
"name": "TreatWChar_tAsBuiltInType",
"switch": "Zc:wchar_t-",