Files
Upsilon/apps/shared/function_store.cpp
2020-04-07 09:51:39 +02:00

17 lines
307 B
C++

#include "function_store.h"
namespace Shared {
uint32_t FunctionStore::storeChecksum() {
return Ion::Storage::sharedStorage()->checksum();
}
uint32_t FunctionStore::storeChecksumAtIndex(int i) {
if (numberOfActiveFunctions() <= i) {
return 0;
}
return activeRecordAtIndex(i).checksum();
}
}