[Scummvm-git-logs] scummvm master -> bf3e9028646bf50acc2629063cf44c887216d427
dwatteau
noreply at scummvm.org
Fri Aug 4 16:35:24 UTC 2023
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:
bf3e902864 CREATE_PROJECT: Quiet VS "structure was padded due to alignment specifier" warning
Commit: bf3e9028646bf50acc2629063cf44c887216d427
https://github.com/scummvm/scummvm/commit/bf3e9028646bf50acc2629063cf44c887216d427
Author: elasota (ejlasota at gmail.com)
Date: 2023-08-04T18:35:21+02:00
Commit Message:
CREATE_PROJECT: Quiet VS "structure was padded due to alignment specifier" warning
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 604b3447413..8e81a339ba1 100644
--- a/devtools/create_project/create_project.cpp
+++ b/devtools/create_project/create_project.cpp
@@ -596,6 +596,8 @@ int main(int argc, char *argv[]) {
// 4610 (object 'class' can never be instantiated - user-defined constructor required)
// "correct" but harmless (as is 4510)
//
+ // 4324 (structure was padded due to alignment specifier)
+ //
////////////////////////////////////////////////////////////////////////////
globalWarnings.push_back("4068");
@@ -605,6 +607,7 @@ int main(int argc, char *argv[]) {
globalWarnings.push_back("4244");
globalWarnings.push_back("4250");
globalWarnings.push_back("4310");
+ globalWarnings.push_back("4324");
globalWarnings.push_back("4345");
globalWarnings.push_back("4351");
globalWarnings.push_back("4512");
More information about the Scummvm-git-logs
mailing list