From 48acf0f16b7eeb1f11cbdf6bc622218cfbb1a11e Mon Sep 17 00:00:00 2001 From: vil02 <65706193+vil02@users.noreply.github.com> Date: Wed, 20 Aug 2025 00:02:33 +0200 Subject: [PATCH] Use consistent exception specification --- gclib/GList.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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