diff options
Diffstat (limited to 'compiler/utils/label.h')
-rw-r--r-- | compiler/utils/label.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/label.h b/compiler/utils/label.h index 9586a1996a..282500b1b7 100644 --- a/compiler/utils/label.h +++ b/compiler/utils/label.h @@ -59,7 +59,7 @@ class Label { public: Label() : position_(0) {} - Label(Label&& src) + Label(Label&& src) noexcept : position_(src.position_) { // We must unlink/unbind the src label when moving; if not, calling the destructor on // the src label would fail. |