Files
Upsilon/apps/shared/storage_function_store.cpp
Émilie Feral c70278941a [graph] Do not keep a function pointer as member variable but a record.
Indeed, function pointers can become invalid at any point...
2018-11-23 12:04:02 +01:00

12 lines
223 B
C++

#include "storage_function_store.h"
#include "storage_cartesian_function.h"
#include <assert.h>
namespace Shared {
uint32_t StorageFunctionStore::storeChecksum() {
return Ion::Storage::sharedStorage()->checksum();
}
}