aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/listuser.h
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/tests/libsample/listuser.h')
-rw-r--r--sources/shiboken6/tests/libsample/listuser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/shiboken6/tests/libsample/listuser.h b/sources/shiboken6/tests/libsample/listuser.h
index 280cfbabd..96781ed16 100644
--- a/sources/shiboken6/tests/libsample/listuser.h
+++ b/sources/shiboken6/tests/libsample/listuser.h
@@ -24,9 +24,9 @@ public:
ListUser();
ListUser(const ListUser &other);
- ListUser(ListUser &&other);
+ ListUser(ListUser &&other) noexcept;
ListUser &operator=(const ListUser &other);
- ListUser &operator=(ListUser &&other);
+ ListUser &operator=(ListUser &&other) noexcept;
virtual ~ListUser();
virtual std::list<int> createList();