Этот коммит содержится в:
Sven Czarnian
2021-10-10 20:51:05 +02:00
родитель ea460b1aaf
Коммит 7d69203486
69 изменённых файлов: 6374 добавлений и 3669 удалений

6
external/include/google/protobuf/has_bits.h поставляемый
Просмотреть файл

@@ -53,11 +53,11 @@ class HasBits {
memset(has_bits_, 0, sizeof(has_bits_));
}
PROTOBUF_NDEBUG_INLINE uint32& operator[](int index) {
PROTOBUF_NDEBUG_INLINE uint32_t& operator[](int index) {
return has_bits_[index];
}
PROTOBUF_NDEBUG_INLINE const uint32& operator[](int index) const {
PROTOBUF_NDEBUG_INLINE const uint32_t& operator[](int index) const {
return has_bits_[index];
}
@@ -76,7 +76,7 @@ class HasBits {
bool empty() const;
private:
uint32 has_bits_[doublewords];
uint32_t has_bits_[doublewords];
};
template <>