We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f1603f commit 049aaefCopy full SHA for 049aaef
lib/vc8000nanoe/README.rst
@@ -75,3 +75,5 @@ License Link:
75
opensource.org/licenses/BSD-3-Clause
76
77
Patch List:
78
+ * Avoid bool redefinition
79
+ Impacted files: inc/basetype.h
lib/vc8000nanoe/inc/basetype.h
@@ -79,6 +79,8 @@ typedef enum {
80
#else /* __symbian__ or __win__ or whatever, customize it to suit well */
81
82
+#include <stdbool.h>
83
+
84
#ifndef _SIZE_T_DEFINED
85
typedef uint32_t size_t;
86
@@ -104,14 +106,6 @@ typedef int32_t i32;
104
106
typedef uint64_t u64;
105
107
typedef int64_t i64;
108
-
-#ifndef __cplusplus
109
-typedef enum {
110
- false = 0,
111
- true = 1
112
-} bool;
113
-#endif
114
115
#endif
116
117
#if defined(VC1SWDEC_16BIT) || defined(MP4ENC_ARM11)
0 commit comments