mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
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:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user