diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-01-11 09:06:10 -0800 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-01-11 09:06:10 -0800 |
commit | 1023ef23b7bf6a65fb563f7ba33ed7a20b139e5e (patch) | |
tree | 09d2b2756d903aa9cdf273ffb1786cbea836f092 /node/RuntimeEnvironment.hpp | |
parent | a56fbc1929d3cb2c6c5a1b4acb3b026a1e13135d (diff) | |
download | infinitytier-1023ef23b7bf6a65fb563f7ba33ed7a20b139e5e.tar.gz infinitytier-1023ef23b7bf6a65fb563f7ba33ed7a20b139e5e.zip |
Remove somewhat ugly and costly anti-recursion hack -- we will switch to more explicit methods.
Diffstat (limited to 'node/RuntimeEnvironment.hpp')
-rw-r--r-- | node/RuntimeEnvironment.hpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/node/RuntimeEnvironment.hpp b/node/RuntimeEnvironment.hpp index 4846c9df..c9990c4a 100644 --- a/node/RuntimeEnvironment.hpp +++ b/node/RuntimeEnvironment.hpp @@ -41,7 +41,6 @@ class Switch; class Topology; class Node; class Multicaster; -class AntiRecursion; class NetworkController; class SelfAwareness; class Cluster; @@ -59,7 +58,6 @@ public: ,localNetworkController((NetworkController *)0) ,sw((Switch *)0) ,mc((Multicaster *)0) - ,antiRec((AntiRecursion *)0) ,topology((Topology *)0) ,sa((SelfAwareness *)0) ,dp((DeferredPackets *)0) @@ -91,7 +89,6 @@ public: Switch *sw; Multicaster *mc; - AntiRecursion *antiRec; Topology *topology; SelfAwareness *sa; DeferredPackets *dp; |