Module: Mesa Branch: master Commit: bcc613acc14d5962d89db19f48d6d53374f1a29b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=bcc613acc14d5962d89db19f48d6d53374f1a29b
Author: Michał Janiszewski <[email protected]> Date: Tue Oct 16 23:44:21 2018 +0200 gallium: Fix mismatched ifdef-guards Signed-off-by: Michał Janiszewski <[email protected]> Reviewed-by: Emil Velikov <[email protected]> --- src/gallium/auxiliary/target-helpers/inline_debug_helper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/auxiliary/target-helpers/inline_debug_helper.h b/src/gallium/auxiliary/target-helpers/inline_debug_helper.h index ef22cac2c3..08aea33071 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 _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
