3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 20:18:18 +00:00

fix build warning from tptp example

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-09-08 13:30:03 -07:00
parent 93fd36b5da
commit 861a31f458
2 changed files with 2 additions and 1 deletions

View file

@ -151,7 +151,7 @@ public:
void set_index(int idx) { m_symbol_index = idx; } void set_index(int idx) { m_symbol_index = idx; }
}; };
TreeNode* MkToken(alloc_region& r, char* token, int symbolIndex) { TreeNode* MkToken(alloc_region& r, char const* token, int symbolIndex) {
TreeNode* ss; TreeNode* ss;
char* symbol = tptp_lval[symbolIndex]; char* symbol = tptp_lval[symbolIndex];
ss = new (r) TreeNode(r, symbol, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); ss = new (r) TreeNode(r, symbol, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);

View file

@ -1133,6 +1133,7 @@ namespace datalog {
*/ */
idx_set m_intersection_content; idx_set m_intersection_content;
public: public:
negation_filter_fn(const table_base & tgt, const table_base & neg, negation_filter_fn(const table_base & tgt, const table_base & neg,
unsigned joined_col_cnt, const unsigned * t_cols, const unsigned * negated_cols) unsigned joined_col_cnt, const unsigned * t_cols, const unsigned * negated_cols)