Skip to content

Commit

Permalink
Missing mappend in base < 4.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MichelBoucey committed Jun 18, 2022
1 parent cd7f6c3 commit 173f547
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Text/IPv6Addr.hs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ import Data.IP (IPv6)
import Data.List (elemIndex, elemIndices, group,
intersperse, isSuffixOf)
import Data.Maybe (fromJust, isJust)

#if !MIN_VERSION_base(4,11,0)
import Data.Monoid ((<>))
#endif

import qualified Data.Text as T
import qualified Data.Text.Read as R (decimal)

Expand Down

0 comments on commit 173f547

Please sign in to comment.