mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 10:55:50 +00:00
move vector<std::string to std::vector<std::string
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4ebf392da7
commit
d383fd851a
2 changed files with 4 additions and 3 deletions
|
@ -298,7 +298,7 @@ namespace smt2 {
|
|||
}
|
||||
|
||||
unsigned m_cache_end;
|
||||
vector<std::string> m_cached_strings;
|
||||
std::vector<std::string> m_cached_strings;
|
||||
|
||||
int m_num_open_paren;
|
||||
|
||||
|
@ -2197,7 +2197,7 @@ namespace smt2 {
|
|||
|
||||
m_scanner.start_caching();
|
||||
m_cache_end = 0;
|
||||
m_cached_strings.reset();
|
||||
m_cached_strings.resize(0);
|
||||
|
||||
check_lparen_next("invalid get-value command, '(' expected");
|
||||
while (!curr_is_rparen()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue