1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-24 21:16:49 -05:00

general: fix compilation on GCC 12

This commit is contained in:
Liam
2022-06-07 18:56:38 -04:00
parent 6f59e2676b
commit d11547024c
2 changed files with 2 additions and 2 deletions

View File

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