summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2021-07-26 10:01:01 +0200
committerLioncash <mathew1800@gmail.com>2021-07-26 10:01:05 +0200
commit89ad9df0e92b0d479c09a69b10988358da384b64 (patch)
tree97e581f7687598104e9ccc9eefed732c35e5ad51
parentMerge pull request #6575 from FernandoS27/new_settings (diff)
downloadyuzu-89ad9df0e92b0d479c09a69b10988358da384b64.tar
yuzu-89ad9df0e92b0d479c09a69b10988358da384b64.tar.gz
yuzu-89ad9df0e92b0d479c09a69b10988358da384b64.tar.bz2
yuzu-89ad9df0e92b0d479c09a69b10988358da384b64.tar.lz
yuzu-89ad9df0e92b0d479c09a69b10988358da384b64.tar.xz
yuzu-89ad9df0e92b0d479c09a69b10988358da384b64.tar.zst
yuzu-89ad9df0e92b0d479c09a69b10988358da384b64.zip
-rw-r--r--src/shader_recompiler/object_pool.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/object_pool.h b/src/shader_recompiler/object_pool.h
index f8b255b66..f3b12d04b 100644
--- a/src/shader_recompiler/object_pool.h
+++ b/src/shader_recompiler/object_pool.h
@@ -63,6 +63,7 @@ private:
used_objects = std::exchange(rhs.used_objects, 0);
num_objects = std::exchange(rhs.num_objects, 0);
storage = std::move(rhs.storage);
+ return *this;
}
Chunk(Chunk&& rhs) noexcept