fuzzers: Fix function not returning a value warning

This was preventing the dawn -> chromium autoroller

Change-Id: Iea260e8b454766e08cdb69cea65222391a4022bd
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/58680
Commit-Queue: Ben Clayton <bclayton@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Auto-Submit: Ben Clayton <bclayton@google.com>
This commit is contained in:
Ben Clayton 2021-07-19 09:35:19 +00:00 committed by Tint LUCI CQ
parent cdcec6d08c
commit 890363145a
1 changed files with 2 additions and 0 deletions

View File

@ -32,7 +32,9 @@ std::unique_ptr<Mutation> Mutation::FromMessage(
message.replace_identifier());
case protobufs::Mutation::MUTATION_NOT_SET:
assert(false && "Mutation is not set");
break;
}
return nullptr;
}
} // namespace ast_fuzzer