File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2037,7 +2037,7 @@ class UnityResolve final {
2037
2037
TKey tKey = { 0 };
2038
2038
2039
2039
Entry* pEntry = GetEntry ();
2040
- if (pEntry) tKey = pEntry[iIndex].m_tKey ;
2040
+ if (pEntry) tKey = pEntry[iIndex].tKey ;
2041
2041
2042
2042
return tKey;
2043
2043
}
@@ -2046,14 +2046,14 @@ class UnityResolve final {
2046
2046
TValue tValue = { 0 };
2047
2047
2048
2048
Entry* pEntry = GetEntry ();
2049
- if (pEntry) tValue = pEntry[iIndex].m_tValue ;
2049
+ if (pEntry) tValue = pEntry[iIndex].tValue ;
2050
2050
2051
2051
return tValue;
2052
2052
}
2053
2053
2054
2054
auto GetValueByKey (const TKey tKey) -> TValue {
2055
2055
TValue tValue = { 0 };
2056
- for (auto i = 0 ; i < iCount; i++) if (GetEntry ()[i].m_tKey == tKey) tValue = GetEntry ()[i].m_tValue ;
2056
+ for (auto i = 0 ; i < iCount; i++) if (GetEntry ()[i].tKey == tKey) tValue = GetEntry ()[i].tValue ;
2057
2057
return tValue;
2058
2058
}
2059
2059
You can’t perform that action at this time.
0 commit comments