Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite
actual IntStack
using class
instead of typealias
If `IntStack` expanded to `IntArrayList`, it contains ambiguous actual functions: `push(int)` and `push(Integer)` (j2k interaction works a bit confused). K2 treats them as an error. Unfortunately, fixing a third-party library with `IntArrayList` (fastutil) is rather complicated, especially considering the library uses code generation. Fortunately, `IntStack` can be rewritten with just a class. See also https://youtrack.jetbrains.com/issue/KT-66723
- Loading branch information