Fix compilation errors when building build-small-yq

This commit is contained in:
Zue 2025-07-01 13:26:26 +08:00
parent 40808838ba
commit 25365a0f0b
3 changed files with 3 additions and 3 deletions

View File

@ -6,6 +6,6 @@ func NewINIDecoder() Decoder {
return nil
}
func NewINIEncoder(indent int) Encoder {
func NewINIEncoder() Encoder {
return nil
}

View File

@ -6,6 +6,6 @@ func NewJSONDecoder() Decoder {
return nil
}
func NewJSONEncoder(indent int, colorise bool, unwrapScalar bool) Encoder {
func NewJSONEncoder(prefs JsonPreferences) Encoder {
return nil
}

View File

@ -6,6 +6,6 @@ func NewXMLDecoder(prefs XmlPreferences) Decoder {
return nil
}
func NewXMLEncoder(indent int, prefs XmlPreferences) Encoder {
func NewXMLEncoder(prefs XmlPreferences) Encoder {
return nil
}