diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-07-10 19:29:18 +0000 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-07-10 19:29:18 +0000 |
commit | 191e0e8d5e704709e5adb10d4f8f448686a4cc74 (patch) | |
tree | 5ad31f102a44bcd4926a441b78be193f801b097d | |
parent | 7c8cd23c5f75eb4012179a54468b2fe33a215aea (diff) | |
parent | 55217e2181cd86fd527852df43d0a8aef8eff667 (diff) | |
download | gtk+-191e0e8d5e704709e5adb10d4f8f448686a4cc74.tar.gz |
Merge branch 'matthiasc/for-master' into 'master'
Fix the build with clang
See merge request GNOME/gtk!2225
-rw-r--r-- | gtk/gtkfilterlistmodel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkfilterlistmodel.c b/gtk/gtkfilterlistmodel.c index 7bc679c9c8..387393cd69 100644 --- a/gtk/gtkfilterlistmodel.c +++ b/gtk/gtkfilterlistmodel.c @@ -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)); |