blob: 58e52613ea159abe37c60799ff72f6152f9464aa (
plain)
1
2
3
4
5
6
7
|
{-# LANGUAGE CPP #-}
module GF.Compile.Compute.Concrete(module M) where
#ifdef CC_LAZY
import GF.Compile.Compute.ConcreteLazy as M -- New, experimental
#else
import GF.Compile.Compute.ConcreteStrict as M -- Old, trusted
#endif
|