| 840 | |
| 841 | |
| 842 | bool Initializer::operator<(const Initializer& rhs) const { |
| 843 | if (offset_ < rhs.offset_) |
| 844 | return true; |
| 845 | return (offset_ == rhs.offset_ && bitFieldBegin_ < rhs.bitFieldBegin_); |
| 846 | } |
| 847 | } |
nothing calls this directly
no outgoing calls
no test coverage detected