# HG changeset patch # User Bram Moolenaar # Date 1561068905 -7200 # Node ID 53ae08e30d1c15ee56ca69c8237c80f5fefd1d93 # Parent 61b305eddc3c9aeb8bc7dd8b0515792a53f3b923 patch 8.1.1576: compiler warning for unused argument commit https://github.com/vim/vim/commit/405bb4273499a1f59c004cae78bae200e93fa8a7 Author: Bram Moolenaar Date: Fri Jun 21 00:12:29 2019 +0200 patch 8.1.1576: compiler warning for unused argument Problem: Compiler warning for unused argument. Solution: Add "UNUSED" annotation. (Dominique Pelle, closes https://github.com/vim/vim/issues/4570) diff --git a/src/ui.c b/src/ui.c --- a/src/ui.c +++ b/src/ui.c @@ -1484,7 +1484,7 @@ clip_invert_area( */ static void clip_invert_rectangle( - Clipboard_T *cbd, + Clipboard_T *cbd UNUSED, int row_arg, int col_arg, int height_arg, diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1576, +/**/ 1575, /**/ 1574,