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 {