3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-28 16:29:50 +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

@ -19,7 +19,6 @@ Revision History:
--*/
#include <functional>
#include "muz/spacer/spacer_context.h"
#include "muz/spacer/spacer_generalizers.h"
@ -37,7 +36,7 @@ Revision History:
using namespace spacer;
namespace {
struct index_lt_proc : public std::function<bool(app*, app*)> {
struct index_lt_proc : public std::binary_function<app*, app *, bool> {
arith_util m_arith;
index_lt_proc(ast_manager &m) : m_arith(m) {}
bool operator() (app *a, app *b) {