render: miindex.c does not need header guard macros

Clears warning from clang 19.1.7:

render/miindex.c:27:9: warning: macro is not used [-Wunused-macros]
   27 | #define _MIINDEX_H_
      |         ^

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1910>
(cherry picked from commit 37b7ea8f8a)
This commit is contained in:
Alan Coopersmith 2025-04-13 12:48:25 -07:00
parent f19f6fac9b
commit b0c8e4ef7e

View file

@ -25,9 +25,6 @@
#include <dix-config.h>
#endif
#ifndef _MIINDEX_H_
#define _MIINDEX_H_
#include "scrnintstr.h"
#include "gcstruct.h"
#include "pixmapstr.h"
@ -328,5 +325,3 @@ miUpdateIndexed(ScreenPtr pScreen,
}
}
}
#endif /* _MIINDEX_H_ */