1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[gcc] Silent gcc. I guess code was ok.

This commit is contained in:
Witold Filipczyk 2019-11-15 16:27:16 +01:00
parent 85066d7016
commit 0724c3c49d

View File

@ -60,9 +60,12 @@ update_all_widgets(struct dialog_data *dlg_data)
/* Iterate backwards rather than forwards so that listboxes are drawn /* Iterate backwards rather than forwards so that listboxes are drawn
* last, which means that they can grab the cursor. Yes, 'tis hacky. */ * last, which means that they can grab the cursor. Yes, 'tis hacky. */
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Warray-bounds"
foreach_widget_back(dlg_data, widget_data) { foreach_widget_back(dlg_data, widget_data) {
display_widget(dlg_data, widget_data); display_widget(dlg_data, widget_data);
} }
#pragma GCC diagnostic pop
} }
void void