diff options
author | Michał Janiszewski <[email protected]> | 2018-10-16 23:44:21 +0200 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-10-18 11:03:03 +0100 |
commit | bcc613acc14d5962d89db19f48d6d53374f1a29b (patch) | |
tree | 716540f4b3de51e283fe04553308a7d533091ee0 /src/gallium | |
parent | 74adc624b607027f271fbe6fba33e26714272232 (diff) |
gallium: Fix mismatched ifdef-guards
Signed-off-by: Michał Janiszewski <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/target-helpers/inline_debug_helper.h | 4 |
1 files 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 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 |