Skip to content

Commit

Permalink
Initializing variable when using the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tesonep committed Apr 25, 2022
1 parent 8c162f0 commit 66c9ac5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion smalltalksrc/VMMaker/SpurMemoryManager.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -6351,7 +6351,9 @@ SpurMemoryManager >> initialize [
"N.B. We *don't* initialize extraRoots because we don't simulate it."
maxOldSpaceSize := self class initializationOptions
ifNotNil: [:initOpts| initOpts at: #maxOldSpaceSize ifAbsent: [0]]
ifNil: [0]
ifNil: [0].
permSpaceDirty := false
]
{ #category : #bootstrap }
Expand Down

0 comments on commit 66c9ac5

Please sign in to comment.