From 93232c24b8963a0a2f0832795911d9bb86820d3d Mon Sep 17 00:00:00 2001 From: Brian Johnson Date: Tue, 24 Oct 2017 11:48:38 -0500 Subject: [PATCH] Adding comment to indicate that memory_manager is not intended to be created locally. --- contracts/eoslib/memory.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/eoslib/memory.hpp b/contracts/eoslib/memory.hpp index 4541d227b..705492726 100644 --- a/contracts/eoslib/memory.hpp +++ b/contracts/eoslib/memory.hpp @@ -20,7 +20,7 @@ namespace eos { * @{ */ - class memory_manager + class memory_manager // NOTE: Should never allocate another instance of memory_manager { friend void* malloc(uint32_t size); friend void* realloc(void* ptr, uint32_t size); -- GitLab