1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

examples: fix maps warnings

This commit is contained in:
unknown-v
2019-08-17 01:55:11 +02:00
committed by Alexander Medvednikov
parent be141d9c5f
commit 49205dcce3
4 changed files with 8 additions and 8 deletions

View File

@ -27,7 +27,7 @@ mut:
// values.encode() will return the encoded data
pub fn new_values() Values {
return Values{
data: map[string]Value{}
data: map[string]Value
}
}