Skip to content

Commit

Permalink
saw-remote-api: Remove uses of undefined (#1392)
Browse files Browse the repository at this point in the history
These are most likely placeholder values that were accidentally left in the
code. Let's remove them.

Fixes #1390.
  • Loading branch information
RyanGlScott authored Jul 22, 2021
1 parent 95a6a1a commit 78bbe4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions saw-remote-api/src/SAWServer/SetOption.hs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ setOption opt =
updateRW rw { rwLaxArith = enabled }
EnableLaxPointerOrdering enabled ->
updateRW rw { rwLaxPointerOrdering = enabled }
EnableSMTArrayMemoryModel enabled -> undefined
EnableSMTArrayMemoryModel enabled ->
updateRW rw { rwSMTArrayMemoryModel = enabled }
EnableWhat4HashConsing enabled -> undefined
EnableWhat4HashConsing enabled ->
updateRW rw { rwWhat4HashConsing = enabled }
ok

Expand Down

0 comments on commit 78bbe4e

Please sign in to comment.