File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -79,3 +79,6 @@ Patch List:
79
79
* Add zephyr build system
80
80
Impacted files: CMakeLists.txt
81
81
README.rst
82
+
83
+ * Avoid bool redefinition
84
+ Impacted files: inc/basetype.h
Original file line number Diff line number Diff line change @@ -79,6 +79,8 @@ typedef enum {
79
79
80
80
#else /* __symbian__ or __win__ or whatever, customize it to suit well */
81
81
82
+ #include <stdbool.h>
83
+
82
84
#ifndef _SIZE_T_DEFINED
83
85
typedef uint32_t size_t ;
84
86
@@ -104,14 +106,6 @@ typedef int32_t i32;
104
106
typedef uint64_t u64 ;
105
107
typedef int64_t i64 ;
106
108
107
-
108
- #ifndef __cplusplus
109
- typedef enum {
110
- false = 0 ,
111
- true = 1
112
- } bool ;
113
- #endif
114
-
115
109
#endif
116
110
117
111
#if defined(VC1SWDEC_16BIT ) || defined(MP4ENC_ARM11 )
You can’t perform that action at this time.
0 commit comments