diff --git a/gclib/GList.hh b/gclib/GList.hh index a1860cb..ce0fab7 100644 --- a/gclib/GList.hh +++ b/gclib/GList.hh @@ -98,7 +98,7 @@ template class GList:public GPVec { 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& list); //copy constructor - GList(GList&& list); //move constructor + GList(GList&& list) noexcept; //move constructor GList(GList* list); //kind of a copy constructor GList& operator=(GList& list); //copy operator GList& operator=(GList&& list); //move operator