Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis Abel committed Apr 21, 2020
1 parent 20de45b commit f590f83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Memory/Manager/NRE_MemoryManager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,15 @@
*/
template <class T>
static void store(T* data) {
memoryManager.storeMemory(data);
_memoryManager.storeMemory(data);
}
/**
* Remove a memory pointer
* @param data the pointer to memory
*/
template <class T>
static void remove(T* data) {
memoryManager.removeMemory(data);
_memoryManager.removeMemory(data);
}
};

Expand Down

0 comments on commit f590f83

Please sign in to comment.