diff options
author | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-12-10 06:55:35 -0800 |
---|---|---|
committer | olpc user <olpc@xo-5d-f7-86.localdomain> | 2019-12-10 06:55:35 -0800 |
commit | d84b81bc12e6a22e442d5dce38e59222119311f0 (patch) | |
tree | 5a94e8830ba02c46c77098aeb9a240748b15d632 /starts/meaning-vm/level1.cpp | |
parent | 363fea37f8943ca3d9b3241660bf271fb6e54bc5 (diff) | |
download | standingwithresilience-d84b81bc12e6a22e442d5dce38e59222119311f0.tar.gz standingwithresilience-d84b81bc12e6a22e442d5dce38e59222119311f0.zip |
readded basic allocation; held pointers with a std::unique_ptr; added some words around increasing relevence
Diffstat (limited to 'starts/meaning-vm/level1.cpp')
-rw-r--r-- | starts/meaning-vm/level1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starts/meaning-vm/level1.cpp b/starts/meaning-vm/level1.cpp index aa945b3..3c1a634 100644 --- a/starts/meaning-vm/level1.cpp +++ b/starts/meaning-vm/level1.cpp @@ -65,7 +65,7 @@ int main() std::cout << apple.dump("dumped", true) << std::endl; std::cout << intellect::level0::allocated() << " allocated" << std::endl; - intellect::level0::dealloc(intellect::level0::concepts::allocations(), intellect::level0::concepts::allocations()); + intellect::level0::dealloc(intellect::level0::concepts::allocations(), intellect::level0::concepts::level0allocations()); std::cout << intellect::level0::allocated() << " allocated" << std::endl; return 0; |