summaryrefslogtreecommitdiff
path: root/src/Wavefront/Lex.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wavefront/Lex.hs')
-rw-r--r--src/Wavefront/Lex.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Wavefront/Lex.hs b/src/Wavefront/Lex.hs
index 7123184..78c6f1d 100644
--- a/src/Wavefront/Lex.hs
+++ b/src/Wavefront/Lex.hs
@@ -377,9 +377,9 @@ data ParamSpec = ParamU | ParamV
377 deriving (Eq,Ord,Show,Enum) 377 deriving (Eq,Ord,Show,Enum)
378 378
379data RefTriple = RefTriple 379data RefTriple = RefTriple
380 { refV :: Int 380 { refV :: {-# UNPACK #-} !Int
381 , refT :: Maybe Int 381 , refT :: !(Maybe Int)
382 , refN :: Maybe Int 382 , refN :: !(Maybe Int)
383 } 383 }
384-- data RefTriple = RefTriple Int (Maybe Int) (Maybe Int) 384-- data RefTriple = RefTriple Int (Maybe Int) (Maybe Int)
385 deriving (Eq,Ord,Show) 385 deriving (Eq,Ord,Show)