Michael Krussel
07/09/2024, 7:03 PM'when' is exhaustive so 'else' is redundant here
. This breaks the build due to -Werror
. If I remove the else block, I can run the unit tests for both platforms, but doing a full build produces an error in compileCommonMainKotlinMetadata
saying that the when
must be exhaustive.
Does anyone know how to suppress the ``'when' is exhaustive so 'else' is redundant here` warning?