| 2077 | } |
| 2078 | |
| 2079 | int DbgType::GetAlign() |
| 2080 | { |
| 2081 | if (mAlign == 0) |
| 2082 | { |
| 2083 | auto primaryType = GetPrimaryType(); |
| 2084 | if (primaryType != this) |
| 2085 | return primaryType->GetAlign(); |
| 2086 | |
| 2087 | if (IsCompositeType()) |
| 2088 | { |
| 2089 | PopulateType(); |
| 2090 | } |
| 2091 | } |
| 2092 | |
| 2093 | if (mAlign != 0) |
| 2094 | return mAlign; |
| 2095 | return 1; |
| 2096 | } |
| 2097 | |
| 2098 | void DbgType::EnsureMethodsMapped() |
| 2099 | { |
no outgoing calls
no test coverage detected