Skip to content

Commit 3391246

Browse files
author
Barthelemy von Haller
committed
fix for gcc with noexcept
1 parent 47167b5 commit 3391246

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/QualityControl/TaskInterface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class TaskInterface
6969
/// Copy assignment operator
7070
TaskInterface& operator= (const TaskInterface& other) = default;
7171
/// Move assignment operator
72-
TaskInterface& operator= (TaskInterface&& other) noexcept = default;
72+
TaskInterface& operator= (TaskInterface&& other)/* noexcept */ = default; // error with gcc if noexcept
7373

7474

7575
// Definition of the methods for the template method pattern

0 commit comments

Comments
 (0)