1
0
forked from GitHub/gf-core

PGFService.hs: fix problem when compiling without C run-time support

The previous patch introduced an indentation problem in the code that is used
when compiling without C run-time support.
This commit is contained in:
hallgren
2017-05-10 12:59:57 +00:00
parent 2675aec1f9
commit 766bc09058

View File

@@ -88,7 +88,7 @@ data Caches = Caches { pgfCache::Cache PGF,
cncLabelsCache::Cache CncLabels }
newPGFCache _ = do pgfCache <- newCache' PGF.readPGF
lblCache <- newCache' (fmap PGF.getDepLabels . readFile)
clblCache <- newCache'(fmap PGF.getCncDepLabels .readFile)
clblCache <- newCache'(fmap PGF.getCncDepLabels .readFile)
return $ Caches pgfCache lblCache clblCache
flushPGFCache c = flushCache (pgfCache c)