From: Michał Janiszewski Date: Tue, 16 Oct 2018 21:44:21 +0000 (+0200) Subject: gallium: Fix mismatched ifdef-guards X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=commitdiff_plain;h=bcc613acc14d5962d89db19f48d6d53374f1a29b gallium: Fix mismatched ifdef-guards Signed-off-by: Michał Janiszewski Reviewed-by: Emil Velikov --- diff --git a/src/gallium/auxiliary/target-helpers/inline_debug_helper.h b/src/gallium/auxiliary/target-helpers/inline_debug_helper.h index ef22cac2c31..08aea330710 100644 --- a/src/gallium/auxiliary/target-helpers/inline_debug_helper.h +++ b/src/gallium/auxiliary/target-helpers/inline_debug_helper.h @@ -38,8 +38,8 @@ debug_screen_wrap(struct pipe_screen *screen) return screen; } -#endif - #ifdef __cplusplus } #endif + +#endif // INLINE_DEBUG_HELPER_H