mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
`gcc -W` doesn't error for e.g. u16 == i32, only for u32 == i16. Any u16 value can fit in an i32.
This commit is contained in:
@@ -778,7 +778,7 @@ pub fn (mut bmp BitMap) draw_glyph(index u16) (int, int) {
|
||||
}
|
||||
}
|
||||
|
||||
if count == int(glyph.contour_ends[c]) {
|
||||
if count == glyph.contour_ends[c] {
|
||||
// dprintln("count == glyph.contour_ends[count]")
|
||||
if s == 2 { // final point was off-curve. connect to start
|
||||
|
||||
|
||||
Reference in New Issue
Block a user