| 936 | } |
| 937 | |
| 938 | uint32_t AFCEntity::GetCustomUInt32(const std::string& name) const |
| 939 | { |
| 940 | auto pData = custom_data_list_.find_value(name); |
| 941 | ARK_ASSERT_RET_VAL(pData != nullptr, NULL_INT); |
| 942 | |
| 943 | return pData->GetUInt(); |
| 944 | } |
| 945 | |
| 946 | int64_t AFCEntity::GetCustomInt64(const std::string& name) const |
| 947 | { |
nothing calls this directly
no test coverage detected