fix compile error on centos in metadata.h for constructors. (#2599)
This commit is contained in:
parent
a323f1e65d
commit
a83ac8663f
1 changed files with 4 additions and 2 deletions
|
@ -172,7 +172,8 @@ class InternalMetadataWithArena
|
|||
public:
|
||||
InternalMetadataWithArena() {}
|
||||
explicit InternalMetadataWithArena(Arena* arena)
|
||||
: InternalMetadataWithArenaBase(arena) {}
|
||||
: InternalMetadataWithArenaBase<UnknownFieldSet,
|
||||
InternalMetadataWithArena>(arena) {}
|
||||
|
||||
void DoSwap(UnknownFieldSet* other) {
|
||||
mutable_unknown_fields()->Swap(other);
|
||||
|
@ -201,7 +202,8 @@ class InternalMetadataWithArenaLite
|
|||
InternalMetadataWithArenaLite() {}
|
||||
|
||||
explicit InternalMetadataWithArenaLite(Arena* arena)
|
||||
: InternalMetadataWithArenaBase(arena) {}
|
||||
: InternalMetadataWithArenaBase<string,
|
||||
InternalMetadataWithArenaLite>(arena) {}
|
||||
|
||||
void DoSwap(string* other) {
|
||||
mutable_unknown_fields()->swap(*other);
|
||||
|
|
Loading…
Add table
Reference in a new issue