Skip to content

Commit

Permalink
saw-remote-api: Remove uses of undefined
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 committed Jul 22, 2021
1 parent d2b99ca commit 054647c
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 054647c

Please sign in to comment.