summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/maxwell/control_flow.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-06-08 00:56:38 +0200
committerLiam <byteslice@airmail.cc>2022-06-14 02:09:30 +0200
commitd11547024c2c14b913ed8743de5e345260e3c19f (patch)
tree249f96ff849b6a509d46295e78ae9c3f91d9ec20 /src/shader_recompiler/frontend/maxwell/control_flow.h
parentkernel: ensure class token lambda exit is unreachable (diff)
downloadyuzu-d11547024c2c14b913ed8743de5e345260e3c19f.tar
yuzu-d11547024c2c14b913ed8743de5e345260e3c19f.tar.gz
yuzu-d11547024c2c14b913ed8743de5e345260e3c19f.tar.bz2
yuzu-d11547024c2c14b913ed8743de5e345260e3c19f.tar.lz
yuzu-d11547024c2c14b913ed8743de5e345260e3c19f.tar.xz
yuzu-d11547024c2c14b913ed8743de5e345260e3c19f.tar.zst
yuzu-d11547024c2c14b913ed8743de5e345260e3c19f.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/frontend/maxwell/control_flow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/control_flow.h b/src/shader_recompiler/frontend/maxwell/control_flow.h
index 2487b9b0b..1ce45b3a5 100644
--- a/src/shader_recompiler/frontend/maxwell/control_flow.h
+++ b/src/shader_recompiler/frontend/maxwell/control_flow.h
@@ -58,7 +58,7 @@ public:
[[nodiscard]] Stack Remove(Token token) const;
private:
- boost::container::small_vector<StackEntry, 3> entries;
+ std::vector<StackEntry> entries;
};
struct IndirectBranch {