Remove extraneous 'template' keyword in Protobuf

Has to be removed, as older (but still capable!) MSVC compilers throw the error 'C2903' (symbol is neither a class template nor a function template). Generated code remained identical after this change.
This commit is contained in:
Kawe Mazidjatari 2023-03-20 13:54:26 +01:00
parent 3da7f10430
commit 8d895bab14

View File

@ -445,7 +445,7 @@ class MapEntryLite : public MapEntryImpl<T, MessageLite, Key, Value,
constexpr MapEntryLite() {}
explicit MapEntryLite(Arena* arena) : SuperType(arena) {}
~MapEntryLite() override {
MessageLite::_internal_metadata_.template Delete<std::string>();
MessageLite::_internal_metadata_.Delete<std::string>();
}
void MergeFrom(const MapEntryLite& other) { MergeFromInternal(other); }