diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-06-08 15:53:10 +0000 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-06-08 15:53:10 +0000 |
commit | 5423136a6407bfb5654234a8a3dcd4a46b4b1201 (patch) | |
tree | 8de67c63f9e607c6eb673c4abd1400746d5bfc09 /pango | |
parent | 4c44845a850b935b28ce7b8665356223a32224fd (diff) | |
parent | 0b3cd20be5249c51ec981a66c07a39d54d1d1c9d (diff) | |
download | pango-5423136a6407bfb5654234a8a3dcd4a46b4b1201.tar.gz |
Merge branch 'master' into 'master'
Replace fallthrough comments with G_GNUC_FALLTHROUGH
See merge request GNOME/pango!177
Diffstat (limited to 'pango')
-rw-r--r-- | pango/break.c | 6 | ||||
-rw-r--r-- | pango/pango-renderer.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/pango/break.c b/pango/break.c index 5aa9d41e..875d776c 100644 --- a/pango/break.c +++ b/pango/break.c @@ -404,7 +404,7 @@ pango_default_break (const gchar *text, GB_type = GB_Prepend; break; } - /* fall through */ + G_GNUC_FALLTHROUGH; case G_UNICODE_CONTROL: case G_UNICODE_LINE_SEPARATOR: case G_UNICODE_PARAGRAPH_SEPARATOR: @@ -420,7 +420,7 @@ pango_default_break (const gchar *text, GB_type = GB_ControlCRLF; break; } - /* fall through */ + G_GNUC_FALLTHROUGH; case G_UNICODE_OTHER_LETTER: if (makes_hangul_syllable) @@ -597,7 +597,7 @@ pango_default_break (const gchar *text, case G_UNICODE_CONTROL: if (wc != 0x000D && wc != 0x000A && wc != 0x000B && wc != 0x000C && wc != 0x0085) break; - /* fall through */ + G_GNUC_FALLTHROUGH; case G_UNICODE_LINE_SEPARATOR: case G_UNICODE_PARAGRAPH_SEPARATOR: WB_type = WB_NewlineCRLF; /* CR, LF, Newline */ diff --git a/pango/pango-renderer.c b/pango/pango-renderer.c index 6c0786c5..539df34a 100644 --- a/pango/pango-renderer.c +++ b/pango/pango-renderer.c @@ -227,7 +227,7 @@ draw_underline (PangoRenderer *renderer, rect->y + 2 * rect->height, rect->width, rect->height); - /* Fall through */ + G_GNUC_FALLTHROUGH; case PANGO_UNDERLINE_SINGLE: case PANGO_UNDERLINE_LOW: case PANGO_UNDERLINE_SINGLE_LINE: |