mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
17 lines
307 B
C++
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();
|
|
}
|
|
|
|
}
|