Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gclib/GList.hh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ template <class OBJ> class GList:public GPVec<OBJ> {
GList(bool sorted, bool free_elements=true, bool beUnique=false);
GList(int init_capacity, bool sorted, bool free_elements=true, bool beUnique=false);
GList(const GList<OBJ>& list); //copy constructor
GList(GList<OBJ>&& list); //move constructor
GList(GList<OBJ>&& list) noexcept; //move constructor
GList(GList<OBJ>* list); //kind of a copy constructor
GList<OBJ>& operator=(GList<OBJ>& list); //copy operator
GList<OBJ>& operator=(GList<OBJ>&& list); //move operator
Expand Down