mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 09:34:08 +00:00
fix build warning from tptp example
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
93fd36b5da
commit
861a31f458
|
@ -151,7 +151,7 @@ public:
|
|||
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;
|
||||
char* symbol = tptp_lval[symbolIndex];
|
||||
ss = new (r) TreeNode(r, symbol, NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
||||
|
|
|
@ -1132,6 +1132,7 @@ namespace datalog {
|
|||
If tgt_is_first is false, contains the same items as \c res.
|
||||
*/
|
||||
idx_set m_intersection_content;
|
||||
|
||||
|
||||
public:
|
||||
negation_filter_fn(const table_base & tgt, const table_base & neg,
|
||||
|
|
Loading…
Reference in a new issue