Skip to content

Commit

Permalink
Fixes Clang 6 linker bug (#12600)
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 527711840
  • Loading branch information
mkruskal-google authored Apr 28, 2023
1 parent aa4a192 commit 49bb3f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/google/protobuf/map_field.h
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ class MapField final : public TypeDefinedMapFieldBase<Key, T> {
constexpr MapField() : impl_() {}
MapField(const MapField&) = delete;
MapField& operator=(const MapField&) = delete;
~MapField() = default;
~MapField() {}

explicit MapField(Arena* arena)
: TypeDefinedMapFieldBase<Key, T>(arena), impl_(arena) {}
Expand Down

0 comments on commit 49bb3f2

Please sign in to comment.