aboutsummaryrefslogtreecommitdiff
path: root/pw_protobuf/stream_decoder.cc
diff options
context:
space:
mode:
Diffstat (limited to 'pw_protobuf/stream_decoder.cc')
-rw-r--r--pw_protobuf/stream_decoder.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/pw_protobuf/stream_decoder.cc b/pw_protobuf/stream_decoder.cc
index 5873b5f7d..2a93ec688 100644
--- a/pw_protobuf/stream_decoder.cc
+++ b/pw_protobuf/stream_decoder.cc
@@ -518,12 +518,12 @@ Status StreamDecoder::Read(span<std::byte> message,
while (Next().ok()) {
// Find the field in the table,
- // TODO(pwbug/650): Finding the field can be made more efficient.
+ // TODO(b/234876102): Finding the field can be made more efficient.
const auto field =
std::find(table.begin(), table.end(), current_field_.field_number());
if (field == table.end()) {
// If the field is not found, skip to the next one.
- // TODO(pwbug/659): Provide a way to allow the caller to inspect unknown
+ // TODO(b/234873295): Provide a way to allow the caller to inspect unknown
// fields, and serialize them back out later.
continue;
}