CREATE_PROJECT: Add warning C4373 to ignore list for SCI engine
This commit is contained in:
parent
bc9abfadf4
commit
add058a8b8
1 changed files with 4 additions and 0 deletions
|
@ -524,6 +524,8 @@ int main(int argc, char *argv[]) {
|
||||||
// 4355 ('this' : used in base member initializer list)
|
// 4355 ('this' : used in base member initializer list)
|
||||||
// only disabled for specific engines where it is used in a safe way
|
// only disabled for specific engines where it is used in a safe way
|
||||||
//
|
//
|
||||||
|
// 4373 (previous versions of the compiler did not override when parameters only differed by const/volatile qualifiers)
|
||||||
|
//
|
||||||
// 4510 ('class' : default constructor could not be generated)
|
// 4510 ('class' : default constructor could not be generated)
|
||||||
//
|
//
|
||||||
// 4511 ('class' : copy constructor could not be generated)
|
// 4511 ('class' : copy constructor could not be generated)
|
||||||
|
@ -573,6 +575,8 @@ int main(int argc, char *argv[]) {
|
||||||
|
|
||||||
projectWarnings["m4"].push_back("4355");
|
projectWarnings["m4"].push_back("4355");
|
||||||
|
|
||||||
|
projectWarnings["sci"].push_back("4373");
|
||||||
|
|
||||||
if (msvcVersion == 9)
|
if (msvcVersion == 9)
|
||||||
provider = new CreateProjectTool::VisualStudioProvider(globalWarnings, projectWarnings, msvcVersion);
|
provider = new CreateProjectTool::VisualStudioProvider(globalWarnings, projectWarnings, msvcVersion);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue