mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
parser: skip $if windows etc blocks on a different os
This commit is contained in:
@@ -85,7 +85,7 @@ pub fn (_rune string) utf32_code() int {
|
||||
for i := 1; i < _rune.len; i++ {
|
||||
c := int(_rune[i])
|
||||
res = res << shift
|
||||
res |= c & 63 /* 0x3f */
|
||||
res |= c & 63 // 0x3f
|
||||
shift = 6
|
||||
}
|
||||
return res
|
||||
|
||||
Reference in New Issue
Block a user