3
0
Fork 0
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:
Nikolaj Bjorner 2018-10-15 12:52:19 -07:00 committed by GitHub
parent 4916de874b
commit 6704a4be02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 10 deletions

View file

@ -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;
};