Skip to content
Snippets Groups Projects
Commit 670b3546 authored by Ian Lynagh's avatar Ian Lynagh
Browse files

Fix warnings in Cabal

parent 4bdecf35
No related branches found
No related tags found
No related merge requests found
......@@ -219,12 +219,12 @@ defaultProgramConfiguration =
-- internal helpers:
updateUnconfiguredProgs :: (UnconfiguredProgs -> UnconfiguredProgs)
-> ProgramConfiguration -> ProgramConfiguration
updateUnconfiguredProgs f conf =
conf { unconfiguredProgs = f (unconfiguredProgs conf) }
updateUnconfiguredProgs update conf =
conf { unconfiguredProgs = update (unconfiguredProgs conf) }
updateConfiguredProgs :: (ConfiguredProgs -> ConfiguredProgs)
-> ProgramConfiguration -> ProgramConfiguration
updateConfiguredProgs f conf =
conf { configuredProgs = f (configuredProgs conf) }
updateConfiguredProgs update conf =
conf { configuredProgs = update (configuredProgs conf) }
-- Read & Show instances are based on listToFM
-- Note that we only serialise the configured part of the database, this is
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment