mirror of
https://github.com/Z3Prover/z3
synced 2025-11-29 08:49:51 +00:00
remove binary_function
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
9ae3339c33
commit
00dab30ea0
2 changed files with 6 additions and 4 deletions
|
|
@ -36,7 +36,7 @@ Revision History:
|
|||
using namespace spacer;
|
||||
|
||||
namespace {
|
||||
struct index_lt_proc : public std::binary_function<app*, app *, bool> {
|
||||
struct index_lt_proc : public std::function<bool(app*, app *)> {
|
||||
arith_util m_arith;
|
||||
index_lt_proc(ast_manager &m) : m_arith(m) {}
|
||||
bool operator() (app *a, app *b) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue