diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-10-28 18:25:19 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-10-28 18:32:31 -0700 |
commit | fc331d39447412320e856f56bab88613264cd8f5 (patch) | |
tree | 2954e69570ebe0ca0c2a6b893b3d9cbcd59bb695 | |
parent | e8c4a2727196c8f9bf76df30c5c0a8671e0e5dfe (diff) |
Remove unused definition of rectangle_t
Was added in commit 854a7c2916455fec5e but never used.
Reported by cppcheck unusedStructMember warning.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | xrandr.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -263,10 +263,6 @@ typedef enum _relation { } relation_t; typedef struct { - int x, y, width, height; -} rectangle_t; - -typedef struct { int x1, y1, x2, y2; } box_t; |