Fix missing return value(2)

Bug: webrtc:11933
Change-Id: I6cceedbfa824b8e24f90219397735e767554915e
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/234741
Reviewed-by: Artem Titov <titovartem@webrtc.org>
Commit-Queue: Björn Terelius <terelius@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#35174}
This commit is contained in:
Björn Terelius
2021-10-11 10:09:23 +02:00
committed by WebRTC LUCI CQ
parent 294f5bcaa8
commit 49c59ca806

View File

@ -79,6 +79,8 @@ std::string EncodeSingleValue(uint64_t value, FieldType field_type) {
RTC_NOTREACHED();
return std::string();
}
RTC_NOTREACHED();
return std::string();
}
absl::optional<FieldType> ConvertFieldType(uint64_t value) {