We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a0cbb9 commit 05b7fc1Copy full SHA for 05b7fc1
compiler/src/dotty/tools/dotc/core/tasty/PositionPickler.scala
@@ -46,7 +46,11 @@ class PositionPickler(
46
lastIndex = index
47
lastSpan = span
48
49
- pickledIndices += index
+ pickledIndices.addOne(index)
50
+ // Note `+=` boxes since it is a generic @inline function in `SetOps`
51
+ // that forwards to the specialized `addOne` in `BitSet`. Since the
52
+ // current backend does not implement `@inline` we are missing the
53
+ // specialization.
54
}
55
56
def pickleSource(source: SourceFile): Unit = {
0 commit comments