Unify (and fix) the naming convention of structures (#1358)
The naming convention of the project for `struct`s is
`typedef struct x_t { } x_t`, but only if it has self-recursive
pointer members, otherwise `typedef struct { } x_t` is enough.
This patch applies this style consistently throughout the code
base.
JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
This commit is contained in:
@@ -103,9 +103,9 @@ typedef struct
|
||||
/**
|
||||
* Node for free chunk list
|
||||
*/
|
||||
typedef struct mem_pools_chunk
|
||||
typedef struct jmem_pools_chunk_t
|
||||
{
|
||||
struct mem_pools_chunk *next_p; /* pointer to next pool chunk */
|
||||
struct jmem_pools_chunk_t *next_p; /* pointer to next pool chunk */
|
||||
} jmem_pools_chunk_t;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user