diff options
author | Federico Igne <federico.igne@cs.ox.ac.uk> | 2022-06-06 11:35:39 +0100 |
---|---|---|
committer | Federico Igne <federico.igne@cs.ox.ac.uk> | 2022-06-06 11:35:39 +0100 |
commit | 6d88c664f94d25d5e697255909f471337c44985e (patch) | |
tree | 5708ba8915e415d82810381501b7732cf0e04452 | |
parent | f2ea699de24108f2ad1209e16a1ca35fc114f91a (diff) | |
download | RSAComb-6d88c664f94d25d5e697255909f471337c44985e.tar.gz RSAComb-6d88c664f94d25d5e697255909f471337c44985e.zip |
fix: allow modification of configs as a mutable Map
-rw-r--r-- | src/main/scala/uk/ac/ox/cs/rsacomb/RSAConfig.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/uk/ac/ox/cs/rsacomb/RSAConfig.scala b/src/main/scala/uk/ac/ox/cs/rsacomb/RSAConfig.scala index 2dcd850..30cf4d4 100644 --- a/src/main/scala/uk/ac/ox/cs/rsacomb/RSAConfig.scala +++ b/src/main/scala/uk/ac/ox/cs/rsacomb/RSAConfig.scala | |||
@@ -27,7 +27,7 @@ case class RSAOption[+T](opt: T) { | |||
27 | object RSAConfig { | 27 | object RSAConfig { |
28 | type Config = Map[Symbol, RSAOption[Any]] | 28 | type Config = Map[Symbol, RSAOption[Any]] |
29 | 29 | ||
30 | private implicit def toRSAOption[T](opt: T) = RSAOption[T](opt) | 30 | implicit def toRSAOption[T](opt: T) = RSAOption[T](opt) |
31 | 31 | ||
32 | /** Help message */ | 32 | /** Help message */ |
33 | private val help: String = """ | 33 | private val help: String = """ |