Removed an unused member of CompState (csLoadedFiles)

This commit is contained in:
Neil Brown 2007-09-17 17:42:48 +00:00
parent a4453fe3c3
commit 75ae6fa36f

View File

@ -68,7 +68,6 @@ data CompState = CompState {
csUnscopedNames :: Map String String,
csNameCounter :: Int,
csTypeContext :: [Maybe A.Type],
csLoadedFiles :: [String],
csWarnings :: [String],
-- Set by passes
@ -100,7 +99,6 @@ emptyState = CompState {
csUnscopedNames = Map.empty,
csNameCounter = 0,
csTypeContext = [],
csLoadedFiles = [],
csWarnings = [],
csNonceCounter = 0,