fix a bug

This commit is contained in:
blueloveTH 2023-04-14 21:54:57 +08:00
parent 83b059b24f
commit e020997305

View File

@ -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;