Skip to content

Commit ae0c403

Browse files
committed
Fix dropped import condition
1 parent 2037c81 commit ae0c403

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ghcide/src/Development/IDE/Core/Shake.hs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,10 @@ import Development.IDE.GHC.Compat (NameCache,
130130
NameCacheUpdater (..),
131131
initNameCache,
132132
knownKeyNames,
133-
mkSplitUniqSupply,
134-
upNameCache)
133+
mkSplitUniqSupply)
134+
#if !MIN_VERSION_ghc(9,3,0)
135+
import Development.IDE.GHC.Compat ( upNameCache)
136+
#endif
135137
import Development.IDE.GHC.Orphans ()
136138
import Development.IDE.Graph hiding (ShakeValue)
137139
import qualified Development.IDE.Graph as Shake

0 commit comments

Comments
 (0)