Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1292 from bubba/fix-part-memory-leak
Browse files Browse the repository at this point in the history
Fix UriCaches being leaked
  • Loading branch information
alanz committed Jun 16, 2019
2 parents 30908ee + 4d179a9 commit b818cfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hie-plugin-api/Haskell/Ide/Engine/PluginsIdeMonads.hs
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ withIndefiniteProgress t c f = do
Just wp -> control $ \run -> wp t c (run f)

data IdeState = IdeState
{ moduleCache :: GhcModuleCache
{ moduleCache :: !GhcModuleCache
-- | A queue of requests to be performed once a module is loaded
, requestQueue :: Map.Map FilePath [UriCacheResult -> IdeM ()]
, extensibleState :: !(Map.Map TypeRep Dynamic)
Expand Down

0 comments on commit b818cfa

Please sign in to comment.