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

scanner: make the 1. float error a warning for now

This commit is contained in:
Alexander Medvednikov
2021-08-25 16:58:54 +03:00
parent 109d5d5847
commit 714fa3215c
4 changed files with 4 additions and 3 deletions

View File

@ -68,7 +68,6 @@ int darwin_text_width(string s) {
return (int)(ceil(size.width));
}
void darwin_draw_rect(float x, float y, float width, float height, gx__Color c) {
NSColor* color = nscolor(c);
NSRect rect = NSMakeRect(x, y, width, height);