This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author cstratak
Recipients cstratak
Date 2017-07-24.17:07:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1500916069.5.0.832452966963.issue31017@psf.upfronthosting.co.za>
In-reply-to
Content
On gcc 7 the new -Wimplicit-fallthrough option was introduced which produces warnings about switch cases that can fall through.

The easiest way to silence these warnings is to add the comment /* Falls through. */ for those cases. More information here [0]

Attaching the stderr output from compilation from the master branch.

[0] https://developers.redhat.com/blog/2017/03/10/wimplicit-fallthrough-in-gcc-7/
History
Date User Action Args
2017-07-24 17:07:49cstrataksetrecipients: + cstratak
2017-07-24 17:07:49cstrataksetmessageid: <1500916069.5.0.832452966963.issue31017@psf.upfronthosting.co.za>
2017-07-24 17:07:49cstrataklinkissue31017 messages
2017-07-24 17:07:49cstratakcreate