-
Notifications
You must be signed in to change notification settings - Fork 612
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: explicitly mark unreachable code to prevent GCC warnings #642
Conversation
@createdbysk has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR! Introducing assume_unreachable
seems like an overkill. Let's use std::terminate
or throw std::logic_error
instead.
Currently, GCC warns about code that switches on an enum, but despite handling all enumerations, will not return a value in the default case. thrift/compiler/sema/check_map_keys.cc: In function 'bool apache::thrift::compiler::{anonymous}::lt_value(const apache::thrift::compiler::t_const_value*, const apache::thrift::compiler::t_const_value*)': thrift/compiler/sema/check_map_keys.cc:167:1: warning: control reaches end of non-void function [-Wreturn-type] 167 | } | ^ This change adds `abort()` after each of these switch statement, the same approach as used e.g. in `t_const_value::kind_to_string`.
f1b961a
to
68b62cc
Compare
That's fair. I've actually found this code, which uses |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@createdbysk has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@createdbysk merged this pull request in e462db1. |
Summary: Currently, GCC warns about code that switches on an enum, but despite handling all enumerations, will not return a value in the default case. thrift/compiler/sema/check_map_keys.cc: In function 'bool apache::thrift::compiler::{anonymous}::lt_value(const apache::thrift::compiler::t_const_value*, const apache::thrift::compiler::t_const_value*)': thrift/compiler/sema/check_map_keys.cc:167:1: warning: control reaches end of non-void function [-Wreturn-type] 167 | } | ^ This change adds `abort()` after each of these switch statement, the same approach as used e.g. in `t_const_value::kind_to_string`. X-link: facebook/fbthrift#642 Reviewed By: vitaut Differential Revision: D71357532 Pulled By: createdbysk fbshipit-source-id: ec1a29e74429f7db83f9fb7b811bee06e238679d
Merged, thanks! |
Currently, GCC warns about code that switches on an enum, but despite handling all enumerations, will not return a value in the default case.
This change adds
abort()
after each of these switch statement, the same approach as used e.g. int_const_value::kind_to_string
.