generate: Add stub return to generateDecodeValue so it compiles

This commit is contained in:
Sasha Koshka 2025-07-07 15:13:18 -04:00
parent 76a8f9444a
commit f1df5fa84d

View File

@ -366,6 +366,7 @@ func (this *Generator) generateEncodeValue(typ Type, valueSource, tagSource stri
// - nn int
func (this *Generator) generateDecodeValue(typ Type, valueSource, tagSource string) (n int, err error) {
// TODO
return 0, nil
}
func (this *Generator) generateErrorCheck() (n int, err error) {