| 53 | } |
| 54 | |
| 55 | int64_t AbstractType::alignOf() const |
| 56 | { |
| 57 | if (d_func()->m_alignOfExponent == AbstractTypeData::MaxAlignOfExponent) { |
| 58 | return -1; |
| 59 | } else { |
| 60 | return Q_INT64_C(1) << d_func()->m_alignOfExponent; |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | void AbstractType::setAlignOf(int64_t alignedTo) |
| 65 | { |
no outgoing calls