1
0
Fork 0

Fix #13795: size_t mayn't be the same size as uint64_t.

pull/13796/head
Peter Nelson 2025-03-11 17:13:45 +00:00
parent 40ddc03423
commit 667a70a10f
No known key found for this signature in database
GPG Key ID: 8EF8F0A467DF75ED
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ struct EngineIDMapping {
/** Projection to get a unique key of an EngineIDMapping, used for sorting in EngineOverrideManager. */
struct EngineIDMappingKeyProjection {
inline size_t operator()(const EngineIDMapping &eid) const { return eid.Key(); }
inline uint64_t operator()(const EngineIDMapping &eid) const { return eid.Key(); }
};
/**