mirror of
https://github.com/Z3Prover/z3
synced 2026-06-19 23:26:30 +00:00
Fix some IDE warnings
This commit is contained in:
parent
0d1ee09e62
commit
9bb0f7e337
3 changed files with 263 additions and 254 deletions
|
|
@ -251,6 +251,12 @@ namespace euf {
|
|||
tokens.push_back(const_cast<snode *>(this));
|
||||
}
|
||||
|
||||
snode_vector collect_tokens() const {
|
||||
snode_vector tokens;
|
||||
collect_tokens(tokens);
|
||||
return tokens;
|
||||
}
|
||||
|
||||
// access the i-th token (0-based, left-to-right order)
|
||||
// returns nullptr if i >= length()
|
||||
snode *at(unsigned i) const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue