Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC

Commits:

1 changed file:

Changes:

  • compiler/GHC/Types/Name/Cache.hs
    ... ... @@ -162,9 +162,7 @@ newNameCacheWith ut nc = NameCache (uniqueTag ut) <$> newMVar nc
    162 162
     -- | This takes a tag for uniques to be generated and the list of knownKeyNames
    
    163 163
     -- These must be initialized properly to ensure that names generated from this
    
    164 164
     -- NameCache do not conflict with known key names.
    
    165
    ---
    
    166
    --- Use `newNameCache` or `newNameCacheWith` instead
    
    167
    -{-# DEPRECATED initNameCache "Use newNameCache or newNameCacheWith instead" #-}
    
    165
    +{-# DEPRECATED initNameCache "Use `newNameCache` or `newNameCacheWith` instead" #-}
    
    168 166
     initNameCache :: UniqueTag -> [Name] -> IO NameCache
    
    169 167
     initNameCache c names = newNameCacheWith c (initOrigNames names)
    
    170 168