Fix the build with clang

clang doesn't allow G_GNUC_FALLBACK in dead code.
Seems silly, but what can we do.
This commit is contained in:
Matthias Clasen
2020-07-10 11:55:46 -04:00
parent 7c8cd23c5f
commit 55217e2181

View File

@@ -494,7 +494,7 @@ gtk_filter_list_model_refilter (GtkFilterListModel *self,
{
default:
g_assert_not_reached ();
G_GNUC_FALLTHROUGH;
/* fall thru */
case GTK_FILTER_CHANGE_DIFFERENT:
self->matches = gtk_bitset_new_empty ();
pending = gtk_bitset_new_range (0, g_list_model_get_n_items (self->model));