diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-12-12T09·59+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-12-12T09·59+0100 |
commit | 8aedaf111eff8be53361b2e3cfa43a86a0c9ec2d (patch) | |
tree | 027e57d328e6c00ea8e0c3b6c8153945c281c129 /src/libexpr/eval.hh | |
parent | a144eb1415a4df24dedf94cb6fc56e561af3b7ee (diff) |
Remove canary stuff
Diffstat (limited to 'src/libexpr/eval.hh')
-rw-r--r-- | src/libexpr/eval.hh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index 8bf65c2c55de..78942927fd24 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -287,8 +287,6 @@ public: /* Print statistics. */ void printStats(); - void printCanaries(); - private: unsigned long nrEnvs; @@ -320,12 +318,6 @@ private: friend struct ExprOpConcatLists; friend struct ExprSelect; friend void prim_getAttr(EvalState & state, const Pos & pos, Value * * args, Value & v); - -#if HAVE_BOEHMGC - std::set<Value *> gcCanaries; - friend void canaryFinalizer(GC_PTR obj, GC_PTR client_data); - friend void prim_gcCanary(EvalState & state, const Pos & pos, Value * * args, Value & v); -#endif }; |