From 1846627ae0f2a8e0e392fc733076cdcafcc1eb8a Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 6 Jun 2017 12:13:45 +0200 Subject: BLI: Use C++ guards for stack header This is handy to have C++ guards for BLI functions so they can be easily re-used in C++ code. This matches other headers from this library as well. --- source/blender/blenlib/BLI_stack.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source') diff --git a/source/blender/blenlib/BLI_stack.h b/source/blender/blenlib/BLI_stack.h index 222005ee92e..d54f2a7bab2 100644 --- a/source/blender/blenlib/BLI_stack.h +++ b/source/blender/blenlib/BLI_stack.h @@ -30,6 +30,10 @@ #include "BLI_compiler_attrs.h" +#ifdef __cplusplus +extern "C" { +#endif + typedef struct BLI_Stack BLI_Stack; BLI_Stack *BLI_stack_new_ex( @@ -55,4 +59,8 @@ size_t BLI_stack_count(const BLI_Stack *stack) ATTR_WARN_UNUSED_RESULT ATTR_NONN bool BLI_stack_is_empty(const BLI_Stack *stack) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); +#ifdef __cplusplus +} +#endif + #endif /* __BLI_STACK_H__ */ -- cgit v1.2.3