diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2024-04-15 12:51:01 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2024-04-15 12:51:01 -0400 |
| commit | 2c69253f382cd0c6d41db57c45119c33c315bb9c (patch) | |
| tree | dc1d97cb471c7116098fc15f45bbf74adf792a7d | |
| parent | 428658bc76b5b9eec46d3b7e415b5d114ddd3f79 (diff) | |
| download | dynamic-extension-2c69253f382cd0c6d41db57c45119c33c315bb9c.tar.gz | |
Missed file from last commit
| -rw-r--r-- | include/framework/DynamicExtension.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/framework/DynamicExtension.h b/include/framework/DynamicExtension.h index 44ad454..9e1b8fa 100644 --- a/include/framework/DynamicExtension.h +++ b/include/framework/DynamicExtension.h @@ -201,7 +201,7 @@ public: */ size_t get_memory_usage() { auto epoch = get_active_epoch(); - auto t= epoch->get_buffer().get_memory_usage() + epoch->get_structure()->get_memory_usage(); + auto t = m_buffer->get_memory_usage() + epoch->get_structure()->get_memory_usage(); end_job(epoch); return t; |