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

all: remove commas between enum vals

This commit is contained in:
yuyi
2020-04-23 07:16:16 +08:00
committed by GitHub
parent d7ee4755c2
commit 4e1abc8503
5 changed files with 170 additions and 170 deletions

View File

@ -85,15 +85,15 @@ const (
// in the future, maybe we can extend this
// to support other mime types
enum AtomType {
xa_atom = 0, //value 4
xa_string = 1, //value 31
targets = 2,
clipboard = 3,
primary = 4,
secondary = 5,
text = 6,
xa_atom = 0 //value 4
xa_string = 1 //value 31
targets = 2
clipboard = 3
primary = 4
secondary = 5
text = 6
utf8_string = 7
text_plain = 8,
text_plain = 8
text_html = 9
}