3
0
Fork 0
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:
Nikolaj Bjorner 2016-03-07 08:08:17 -08:00
parent 26f27867bf
commit 8c4d791f01
2 changed files with 18 additions and 11 deletions

View file

@ -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;
/**