1.1 --- a/src/routing/global-routing/candidate-queue.h Wed Jul 02 13:23:44 2008 -0700
1.2 +++ b/src/routing/global-routing/candidate-queue.h Wed Jul 02 13:23:54 2008 -0700
1.3 @@ -162,10 +162,6 @@
1.4 */
1.5 void Reorder (void);
1.6
1.7 -protected:
1.8 - typedef std::list<SPFVertex*> CandidateList_t;
1.9 - CandidateList_t m_candidates;
1.10 -
1.11 private:
1.12 /**
1.13 * Candidate Queue copy construction is disallowed (not implemented) to
1.14 @@ -180,6 +176,9 @@
1.15 * properly deal with deep copies.
1.16 */
1.17 CandidateQueue& operator= (CandidateQueue& sr);
1.18 +
1.19 + typedef std::list<SPFVertex*> CandidateList_t;
1.20 + CandidateList_t m_candidates;
1.21 };
1.22
1.23 } // namespace ns3