File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -736,19 +736,19 @@ template<class T> class ObjRegistry
736
736
* but the objects themselves can be modified.
737
737
* This iterator should remain valid even if an object is removed.
738
738
*/
739
- typename list<T*>::const_iterator list_begin () const ;
739
+ typename std:: list<T*>::const_iterator list_begin () const ;
740
740
/* * low-level access to the underlying list end().
741
741
* Const access as we do not want the number and order of objects to change,
742
742
* but the objects themselves can be modified.
743
743
* This iterator should remain valid even if an object is removed.
744
744
*/
745
- typename list<T*>::const_iterator list_end () const ;
745
+ typename std:: list<T*>::const_iterator list_end () const ;
746
746
private:
747
747
// / The registry of objects
748
748
vector<T*> mvpRegistry;
749
749
// / Another view of the registry of objects - this time as a std::list, which
750
750
// / will not be invalidated if one object is deleted
751
- list<T*> mvpRegistryList;
751
+ std:: list<T*> mvpRegistryList;
752
752
// / Name of this registry
753
753
string mName ;
754
754
// / Last time an object was added or removed
You can’t perform that action at this time.
0 commit comments