Change bit fields' type from uint32_t to unsigned int (because uint32_t is defined as something other than unsigned int in arm-none-eabi stdint.h; using that type for bit-fields is GCC extension).

This commit is contained in:
Ruben Ayrapetyan
2014-07-14 19:56:17 +04:00
parent c9e98171fd
commit 63547e9f2c
2 changed files with 28 additions and 28 deletions
+2 -2
View File
@@ -35,12 +35,12 @@ typedef struct {
* Note:
* m_PropertyName is valid only if m_IsPropertyReference is true.
*/
uint32_t m_IsPropertyReference : 1;
unsigned int m_IsPropertyReference : 1;
/**
* Flag indicating that this reference is strict (see also: ECMA-262 v5, 8.7).
*/
uint32_t m_StrictReference : 1;
unsigned int m_StrictReference : 1;
/**
* Name of variable (Null-terminated string).