diff options
author | John Wiegley <johnw@newartisans.com> | 2012-02-21 01:45:26 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-02-21 01:45:26 -0600 |
commit | 1837e323916c7479623bb61e479407b85edee562 (patch) | |
tree | e44cd8458af9f8e81a04f3effe8e3885d17b1900 /src/scope.h | |
parent | bc9ff7095fbfa1812e4f47dbf8531dec76cd0d00 (diff) | |
download | fork-ledger-1837e323916c7479623bb61e479407b85edee562.tar.gz fork-ledger-1837e323916c7479623bb61e479407b85edee562.tar.bz2 fork-ledger-1837e323916c7479623bb61e479407b85edee562.zip |
The new SCOPE mechanism is working
Diffstat (limited to 'src/scope.h')
-rw-r--r-- | src/scope.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/scope.h b/src/scope.h index a7b3c5cb..fbc1a889 100644 --- a/src/scope.h +++ b/src/scope.h @@ -188,6 +188,8 @@ public: scope_t& _grandchild) : child_scope_t(_parent), grandchild(_grandchild) { TRACE_CTOR(bind_scope_t, "scope_t&, scope_t&"); + DEBUG("scope.symbols", + "Binding scope " << &_parent << " with " << &_grandchild); } virtual ~bind_scope_t() { TRACE_DTOR(bind_scope_t); |