File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 11{-# LANGUAGE FlexibleInstances, OverlappingInstances, UndecidableInstances #-}
2+ {-# LANGUAGE DeriveDataTypeable #-}
23module Hyper.Internal (
34 -- * Synopsis
45 -- | Internal data types used by the HyperHaskell back-end
@@ -12,6 +13,7 @@ module Hyper.Internal (
1213
1314import Control.DeepSeq
1415import Data.List (isPrefixOf )
16+ import Data.Typeable
1517
1618import qualified Data.Text as T
1719import qualified Data.Text.Lazy as TL
@@ -22,7 +24,7 @@ import qualified Text.Blaze.Html.Renderer.Text as H
2224 Graphics
2325------------------------------------------------------------------------------}
2426-- | A graphical representation of data.
25- data Graphic = Graphic { gHtml :: T. Text }
27+ data Graphic = Graphic { gHtml :: T. Text } deriving ( Typeable )
2628
2729instance NFData Graphic where rnf g = rnf (gHtml g)
2830
You can’t perform that action at this time.
0 commit comments