[Scummvm-cvs-logs] scummvm master -> add058a8b81c1056013c1c02e17cb24151896bbc
dreammaster
dreammaster at scummvm.org
Sat Aug 13 02:18:32 CEST 2016
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
add058a8b8 CREATE_PROJECT: Add warning C4373 to ignore list for SCI engine
Commit: add058a8b81c1056013c1c02e17cb24151896bbc
https://github.com/scummvm/scummvm/commit/add058a8b81c1056013c1c02e17cb24151896bbc
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2016-08-12T20:18:20-04:00
Commit Message:
CREATE_PROJECT: Add warning C4373 to ignore list for SCI engine
Changed paths:
devtools/create_project/create_project.cpp
diff --git a/devtools/create_project/create_project.cpp b/devtools/create_project/create_project.cpp
index 7e2cad0..8841eaa 100644
--- a/devtools/create_project/create_project.cpp
+++ b/devtools/create_project/create_project.cpp
@@ -524,6 +524,8 @@ int main(int argc, char *argv[]) {
// 4355 ('this' : used in base member initializer list)
// 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)
//
// 4511 ('class' : copy constructor could not be generated)
@@ -573,6 +575,8 @@ int main(int argc, char *argv[]) {
projectWarnings["m4"].push_back("4355");
+ projectWarnings["sci"].push_back("4373");
+
if (msvcVersion == 9)
provider = new CreateProjectTool::VisualStudioProvider(globalWarnings, projectWarnings, msvcVersion);
else
More information about the Scummvm-git-logs
mailing list