From e0209973050ab7c0fe4321d0d0a5fedc5b97cc32 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Fri, 14 Apr 2023 21:54:57 +0800 Subject: [PATCH] fix a bug --- src/frame.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frame.h b/src/frame.h index 44c6b327..048efaa2 100644 --- a/src/frame.h +++ b/src/frame.h @@ -49,7 +49,7 @@ struct FastLocals{ _inc_counter(); } - FastLocals(FastLocals&& other){ + FastLocals(FastLocals&& other) noexcept{ varnames_inv = std::move(other.varnames_inv); a = other.a; other.a = nullptr;