-
Notifications
You must be signed in to change notification settings - Fork 277
Clean up ansi_c_convert_typet's interface #5599
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
Clean up ansi_c_convert_typet's interface #5599
Conversation
Codecov ReportBase: 78.38% // Head: 78.33% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## develop #5599 +/- ##
===========================================
- Coverage 78.38% 78.33% -0.05%
===========================================
Files 1647 1645 -2
Lines 190362 190341 -21
===========================================
- Hits 149213 149112 -101
- Misses 41149 41229 +80
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
33de0af
to
70d174c
Compare
2301de3
to
e27cb89
Compare
e27cb89
to
572b316
Compare
572b316
to
35e31f7
Compare
35e31f7
to
f213afe
Compare
f668aac
to
93c14fe
Compare
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.
Sounds like there should have been 3 commits, but ok.
Use a message handler instead.
The need to invoke read() was only specified in a comment. Make the constructor take care of this. Also, make the constructor initialise all members rather than leaving this to clear(), which is thus no longer necessary.
93c14fe
to
794f6f7
Compare
I turned it into 2 commits, breaking up the smaller one of the two turned out to be rather cumbersome and it wasn't really clear anymore where to put which change. |
The need to invoke read() was only specified in a comment. Make the
constructor take care of this. Also, make the constructor initialise all
members rather than leaving this to clear(), which is thus no longer
necessary. Finally, do not unnecessarily inherit from messaget (there is
no is-a relationship).