mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
remove warnigs
This commit is contained in:
parent
98ffa233ea
commit
c677bad3cc
1 changed files with 4 additions and 4 deletions
|
@ -84,10 +84,10 @@ struct PointerFields {
|
|||
type PointerFieldsAlias = PointerFields
|
||||
|
||||
struct OmitFields {
|
||||
a ?bool = none @[omitempty]
|
||||
b string = '' @[omitempty]
|
||||
c int = 0 @[omitempty]
|
||||
d f64 = 0.0 @[omitempty]
|
||||
a ?bool @[omitempty]
|
||||
b string @[omitempty]
|
||||
c int @[omitempty]
|
||||
d f64 @[omitempty]
|
||||
e ?string = '' @[omitempty]
|
||||
f ?int = 0 @[omitempty]
|
||||
g ?f64 = 0.0 @[omitempty]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue