diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-06-30 14:49:03 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-07-13 11:38:42 +0200 |
commit | dba850070044697a84f1baaad8ad274cc7601cb3 (patch) | |
tree | c15a2b18163175f08291e027d8838e73d895a8da /nxcompshad | |
parent | 76b48676844bc7aa0511b8371ef6347b2e8ad545 (diff) | |
download | nx-libs-dba850070044697a84f1baaad8ad274cc7601cb3.tar.gz nx-libs-dba850070044697a84f1baaad8ad274cc7601cb3.tar.bz2 nx-libs-dba850070044697a84f1baaad8ad274cc7601cb3.zip |
nxcompshad/src/Regions.h: Avoid warning: ‘typedef’ was ignored in this declaration. Drop typedef declaration from _XRegion struct.
Diffstat (limited to 'nxcompshad')
-rw-r--r-- | nxcompshad/src/Regions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nxcompshad/src/Regions.h b/nxcompshad/src/Regions.h index 59fdcb46c..2bc24a39c 100644 --- a/nxcompshad/src/Regions.h +++ b/nxcompshad/src/Regions.h @@ -33,7 +33,7 @@ typedef struct { short x1, x2, y1, y2; } Box, BOX, BoxRec, *BoxPtr; -typedef struct _XRegion { +struct _XRegion { long size; long numRects; BOX *rects; |