[Bf-blender-cvs] [1846627ae0f] master: BLI: Use C++ guards for stack header

Sergey Sharybin noreply at git.blender.org
Tue Jun 6 12:15:08 CEST 2017


Commit: 1846627ae0f2a8e0e392fc733076cdcafcc1eb8a
Author: Sergey Sharybin
Date:   Tue Jun 6 12:13:45 2017 +0200
Branches: master
https://developer.blender.org/rB1846627ae0f2a8e0e392fc733076cdcafcc1eb8a

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.

===================================================================

M	source/blender/blenlib/BLI_stack.h

===================================================================

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__ */




More information about the Bf-blender-cvs mailing list