[api] Make ProtoDecodableMessage::decode() non-virtual (#15076)

This commit is contained in:
J. Nick Koston
2026-03-23 08:23:08 -10:00
committed by GitHub
parent 03d6b36fe0
commit 36d2e58b11
3 changed files with 10 additions and 18 deletions
+1 -1
View File
@@ -2275,7 +2275,7 @@ def build_message_type(
o += "}\n"
cpp += o
# Generate the decode() declaration in header (public method)
prot = "void decode(const uint8_t *buffer, size_t length) override;"
prot = "void decode(const uint8_t *buffer, size_t length);"
public_content.append(prot)
# Only generate encode method if this message needs encoding and has fields