From fa028715258a3c9c11ba52c8cdce578b06f740f9 Mon Sep 17 00:00:00 2001 From: aarne Date: Tue, 9 Sep 2008 15:33:56 +0000 Subject: [PATCH] missing case in param lookup table in GrammartoGFCC --- src/GF/Compile/GrammarToGFCC.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/GF/Compile/GrammarToGFCC.hs b/src/GF/Compile/GrammarToGFCC.hs index db5b4376e..5d2b1b408 100644 --- a/src/GF/Compile/GrammarToGFCC.hs +++ b/src/GF/Compile/GrammarToGFCC.hs @@ -358,6 +358,7 @@ paramValues cgr = (labels,untyps,typs) where isParam ty = case ty of Q _ _ -> True + QC _ _ -> True RecType rs -> all isParam (map snd rs) _ -> False