Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eba18e90 authored by Janis Danisevskis's avatar Janis Danisevskis Committed by android-build-merger
Browse files

Merge "authorization_set.cpp: relax serialization of unknown tags"

am: 949ab7db

Change-Id: Ic3d4312e457a0ff001013186c1f214b3d00c790f
parents 667cf687 949ab7db
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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;
    }
};