mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 22:35:45 +00:00
Fixes #564: use std::vector on std::strings
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
0f93853a4c
commit
4ebf392da7
2 changed files with 7 additions and 5 deletions
|
@ -22,6 +22,7 @@ Notes:
|
|||
#define CMD_CONTEXT_H_
|
||||
|
||||
#include<sstream>
|
||||
#include<vector>
|
||||
#include"ast.h"
|
||||
#include"ast_printer.h"
|
||||
#include"pdecl.h"
|
||||
|
@ -38,6 +39,7 @@ Notes:
|
|||
#include"scoped_ptr_vector.h"
|
||||
#include"context_params.h"
|
||||
|
||||
|
||||
class func_decls {
|
||||
func_decl * m_decls;
|
||||
public:
|
||||
|
@ -189,7 +191,7 @@ protected:
|
|||
//
|
||||
ptr_vector<pdecl> m_aux_pdecls;
|
||||
ptr_vector<expr> m_assertions;
|
||||
vector<std::string> m_assertion_strings;
|
||||
std::vector<std::string> m_assertion_strings;
|
||||
ptr_vector<expr> m_assertion_names; // named assertions are represented using boolean variables.
|
||||
|
||||
struct scope {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue