-
Notifications
You must be signed in to change notification settings - Fork 262
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
Replace all uses of deprecated functions by non-deprecated ones [depends-on: #5621, #5587, #5599, #4050] #3800
Open
tautschnig
wants to merge
16
commits into
diffblue:develop
Choose a base branch
from
tautschnig:no-Wno-deprecated
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tautschnig
requested review from
allredj,
cesaro,
chrisr-diffblue,
cristina-david,
kroening,
martin-cs,
NathanJPhillips,
peterschrammel,
pkesseli,
romainbrenguier,
smowton and
thk123
as code owners
January 14, 2019 15:36
What, if any, reviewing do you want on this? It seems quite a few parts have already been split out and merged. |
tautschnig
force-pushed
the
no-Wno-deprecated
branch
from
January 21, 2019 19:46
7d63308
to
9022d37
Compare
tautschnig
added a commit
that referenced
this pull request
Jan 22, 2019
Construct parametert in a non-deprecated way [blocks: #3800]
tautschnig
added a commit
that referenced
this pull request
Jan 23, 2019
Use numeric_cast_v<unsigned> instead to_ulong with incompatible types [blocks: #3800]
tautschnig
added a commit
that referenced
this pull request
Jan 23, 2019
Use non-deprecated variants of read_goto_binary [blocks: #3800]
tautschnig
added a commit
that referenced
this pull request
Jan 23, 2019
Use non-trivial constructor of code_function_callt [blocks: #3800]
tautschnig
added a commit
that referenced
this pull request
Jan 24, 2019
Use conjunction instead of piecewise construction of and_exprt [blocks: #3800]
tautschnig
added a commit
that referenced
this pull request
Jan 24, 2019
Construct complex_typet in a non-deprecated way [blocks: #3800]
tautschnig
force-pushed
the
no-Wno-deprecated
branch
from
January 24, 2019 23:00
9022d37
to
fc5cf07
Compare
tautschnig
added a commit
that referenced
this pull request
Jan 26, 2019
…hable Remove unreachable statement [blocks: #3800]
tautschnig
added a commit
that referenced
this pull request
Jan 26, 2019
Replace use of deprecated nil_typet in c_sizeof_type_rec [blocks: #3800]
tautschnig
added a commit
that referenced
this pull request
Jan 26, 2019
Replace use of deprecated nil_typet in c_bit_field_replacement_type [blocks: #3800]
tautschnig
added a commit
that referenced
this pull request
Jan 27, 2019
Avoid default constructing code_ifthenelset [blocks: #3800]
tautschnig
added a commit
that referenced
this pull request
Jan 27, 2019
smt2 id_map: Do not use nil_typet when we mean "optional" [blocks: #3800]
tautschnig
requested review from
a team,
thomasspriggs,
NlightNFotis,
TGWDB,
chris-ryder and
remi-delmas-3000
as code owners
May 4, 2023 11:57
23 tasks
thomasspriggs
added a commit
that referenced
this pull request
Dec 12, 2023
languaget is not a messaget [blocks: #3800]
@tautschnig Looks like this now needs rebasing. |
tautschnig
force-pushed
the
no-Wno-deprecated
branch
from
December 19, 2023 14:17
ed9c11c
to
93a6b22
Compare
There is no need to access the parser object when the same information is available directly from `config`.
Thread through a Boolean flag rather than relying on the parser object far away from the actual parser.
This is to provide a path to remove the long-deprecated messaget() constructor. Uses of this new constructor will be added in separate commits.
This both avoids an object of static lifetime as well as it fixes the (transitive) use of the deprecated messaget() constructor.
This both avoids an object of static lifetime as well as it fixes the (transitive) use of the deprecated messaget() constructor.
This both avoids an object of static lifetime as well as it fixes the (transitive) use of the deprecated messaget() constructor.
This both avoids an object of static lifetime as well as it fixes the (transitive) use of the deprecated messaget() constructor.
This both avoids an object of static lifetime as well as it fixes the (transitive) use of the deprecated messaget() constructor.
This both avoids an object of static lifetime as well as it fixes the (transitive) use of the deprecated messaget() constructor.
This both avoids an object of static lifetime as well as it fixes the (transitive) use of the deprecated messaget() constructor.
This both avoids an object of static lifetime as well as it fixes the (transitive) use of the deprecated messaget() constructor.
It is now no longer possible to construct a messaget object that is not fully configured, i.e., lacks a message handler.
All uses of deprecated functions have been replaced.
tautschnig
force-pushed
the
no-Wno-deprecated
branch
from
December 20, 2023 14:02
93a6b22
to
e23573d
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is currently in proof-of-concept stage with all changes in a single commit: I've tried to figure out what it would take to get rid of all the uses of deprecated functions. I will over time create individual commits and PRs that resolve one function at a time.