Skip to content

Commit

Permalink
remove another silly Ord instance
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellwrosen committed Nov 15, 2023
1 parent ce0dc32 commit dbaadba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion termbox-bindings-hs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- Improve `Show` instance of `Tb_event_mod`, `Tb_input_mode`
- Add `Exception` instance for `Tb_init_error`
- Remove `tb_attr`
- Remove `Ord` instances of `Tb_cell`, `Tb_event`, `Tb_event_mod`, `Tb_event_type`, `Tb_init_error`
- Remove `Ord` instances of `Tb_cell`, `Tb_event`, `Tb_event_mod`, `Tb_event_type`, `Tb_init_error`, `Tb_input_mode`, `Tb_output_mode`

## [0.1.1] - November 5, 2023

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import Termbox.Bindings.C
-- | The output mode.
newtype Tb_output_mode
= Tb_output_mode CInt
deriving stock (Eq, Ord)
deriving stock (Eq)

instance Show Tb_output_mode where
show = \case
Expand Down

0 comments on commit dbaadba

Please sign in to comment.