mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
use std::vector per Nuno's analysis to fix #420
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
26f27867bf
commit
8c4d791f01
2 changed files with 18 additions and 11 deletions
|
@ -23,6 +23,7 @@ Revision History:
|
|||
#include "ast.h"
|
||||
#include "map.h"
|
||||
#include "vector.h"
|
||||
#include <vector>
|
||||
|
||||
class model_core;
|
||||
|
||||
|
@ -46,7 +47,7 @@ private:
|
|||
mutable unsigned m_next_sym_suffix_idx;
|
||||
mutable symbols m_used_suffixes;
|
||||
/** Here we have default suffixes for each of the variants */
|
||||
vector<std::string> m_suffixes;
|
||||
std::vector<std::string> m_suffixes;
|
||||
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue