summaryrefslogtreecommitdiff
path: root/src/op.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/op.h')
-rw-r--r--src/op.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/op.h b/src/op.h
index 1807cdd7..8b914311 100644
--- a/src/op.h
+++ b/src/op.h
@@ -355,13 +355,6 @@ expr_t::op_t::wrap_functor(expr_t::func_t fobj) {
return temp;
}
-inline expr_t::ptr_op_t
-expr_t::op_t::wrap_scope(shared_ptr<scope_t> sobj) {
- ptr_op_t temp(new op_t(op_t::SCOPE));
- temp->set_scope(sobj);
- return temp;
-}
-
#define MAKE_FUNCTOR(x) expr_t::op_t::wrap_functor(bind(&x, this, _1))
#define WRAP_FUNCTOR(x) expr_t::op_t::wrap_functor(x)