diff options
-rw-r--r-- | cpp/010vm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/010vm.cc b/cpp/010vm.cc index 48b68cdf..6e314b4e 100644 --- a/cpp/010vm.cc +++ b/cpp/010vm.cc @@ -56,7 +56,7 @@ struct property { :(before "End Globals") // Locations refer to a common 'memory'. Each location can store a number. -map<int, int> Memory; +map<size_t, int> Memory; :(before "End Setup") Memory.clear(); |