Simplify the Element dtor invocation when freeing elements in
InternalDeallocate to avoid confusing the compiler when there's a class named Element already defined in the global namespace.
This commit is contained in:
parent
8aa927f08f
commit
2240a785f9
1 changed files with 1 additions and 1 deletions
|
@ -291,7 +291,7 @@ class RepeatedField PROTOBUF_FINAL {
|
|||
Element* e = &rep->elements[0];
|
||||
Element* limit = &rep->elements[size];
|
||||
for (; e < limit; e++) {
|
||||
e->Element::~Element();
|
||||
e->~Element();
|
||||
}
|
||||
if (rep->arena == NULL) {
|
||||
#if defined(__GXX_DELETE_WITH_SIZE__) || defined(__cpp_sized_deallocation)
|
||||
|
|
Loading…
Add table
Reference in a new issue