Skip to content

Commit

Permalink
fix: replace unused var with val
Browse files Browse the repository at this point in the history
  • Loading branch information
markehammons committed Jan 6, 2024
1 parent 93810b9 commit a9b765f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/fr/hammons/slinc/FSet.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ trait FSet[L]:
val dependencies: List[Dependency]
val description: List[CFunctionDescriptor]
val generation: List[FunctionBindingGenerator]
private var lib: AtomicStampedReference[FSetBacking[L]] =
private val lib: AtomicStampedReference[FSetBacking[L]] =
AtomicStampedReference(null, 0)
private val ver = Array(0)

Expand Down

0 comments on commit a9b765f

Please sign in to comment.