Skip to content

Commit d2aebf6

Browse files
committed
fix: compilation failure on GHC 9.10 and newer text
There's a new symbol show from text which conflicts with the prelude's show.
1 parent e48e1c4 commit d2aebf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

glean/hs/Glean/Query/Thrift/Internal.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ import Data.IORef
4747
import qualified Data.Map as Map
4848
import Data.Maybe
4949
import Data.Proxy
50-
import Data.Text as Text
50+
import Data.Text as Text hiding (show)
5151
import qualified Data.Text.Encoding as Text
5252
import Compat.Prettyprinter hiding ((<>))
5353
import qualified Data.Vector as Vector

0 commit comments

Comments
 (0)