Browse Source

fix a bug

blueloveTH 2 years ago
parent
commit
e020997305
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/frame.h

+ 1 - 1
src/frame.h

@@ -49,7 +49,7 @@ struct FastLocals{
         _inc_counter();
         _inc_counter();
     }
     }
 
 
-    FastLocals(FastLocals&& other){
+    FastLocals(FastLocals&& other) noexcept{
         varnames_inv = std::move(other.varnames_inv);
         varnames_inv = std::move(other.varnames_inv);
         a = other.a;
         a = other.a;
         other.a = nullptr;
         other.a = nullptr;