mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 00:55:31 +00:00
Revert "Made Z3 compile for C++17 with MSVC"
This commit is contained in:
parent
4916de874b
commit
6704a4be02
4 changed files with 6 additions and 10 deletions
|
@ -21,10 +21,9 @@ Revision History:
|
|||
|
||||
#include "ast/ast.h"
|
||||
#include "util/uint_set.h"
|
||||
#include <functional>
|
||||
|
||||
// TBD: move under qe namespace
|
||||
class is_variable_proc : public std::function<bool(expr*)> {
|
||||
class is_variable_proc : public std::unary_function<expr*,bool> {
|
||||
public:
|
||||
virtual bool operator()(const expr* e) const = 0;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue