mirror of
https://github.com/json-c/json-c.git
synced 2026-03-24 07:29:07 +08:00
Apply gcc's "const" attribute to the json_c_object_sizeof() function as an optimizer hint. Also, rename that function from json_object_sizeof().
This commit is contained in:
committed by
Björn Esser
parent
10fe00650c
commit
8baf437817
@@ -509,7 +509,7 @@ int json_object_object_length(const struct json_object *jso)
|
||||
return lh_table_length(jso->o.c_object);
|
||||
}
|
||||
|
||||
size_t json_object_sizeof(void)
|
||||
size_t json_c_object_sizeof(void)
|
||||
{
|
||||
return sizeof(struct json_object);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user