Merge "authorization_set.cpp: relax serialization of unknown tags" am: 949ab7dbb9

am: eba18e906f

Change-Id: I82a53918263dde2cd133d7f4447b917bf2b990c2
This commit is contained in:
Janis Danisevskis
2018-11-12 17:26:42 -08:00
committed by android-build-merger

View File

@@ -261,9 +261,8 @@ struct choose_serializer<MetaList<Tags...>> {
template <>
struct choose_serializer<> {
static OutStreams& serialize(OutStreams& out, const KeyParameter& param) {
LOG(FATAL) << "Trying to serialize unknown tag " << unsigned(param.tag)
LOG(ERROR) << "Trying to serialize unknown tag " << unsigned(param.tag)
<< ". Did you forget to add it to all_tags_t?";
abort();
return out;
}
};