no need for protected members
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Wed, 02 Jul 2008 13:23:54 -0700
changeset 3378 747aeace32ee
parent 3377 37b35c72bc57
child 3379 a2ef1eb4c16d
no need for protected members
src/routing/global-routing/candidate-queue.h
--- a/src/routing/global-routing/candidate-queue.h	Wed Jul 02 13:23:44 2008 -0700
+++ b/src/routing/global-routing/candidate-queue.h	Wed Jul 02 13:23:54 2008 -0700
@@ -162,10 +162,6 @@
  */
   void Reorder (void);
 
-protected:
-  typedef std::list<SPFVertex*> CandidateList_t;
-  CandidateList_t m_candidates;
-
 private:
 /**
  * Candidate Queue copy construction is disallowed (not implemented) to 
@@ -180,6 +176,9 @@
  * properly deal with deep copies.
  */
   CandidateQueue& operator= (CandidateQueue& sr);
+
+  typedef std::list<SPFVertex*> CandidateList_t;
+  CandidateList_t m_candidates;
 };
 
 } // namespace ns3