3
0
Fork 0
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:
CEisenhofer 2026-05-19 16:03:21 +02:00
parent 0d1ee09e62
commit 9bb0f7e337
3 changed files with 263 additions and 254 deletions

View file

@ -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 {