mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-08-08 07:04:41 +02:00
Added size on x86
@@ -86,4 +86,12 @@ Memory is released in `DynamicJsonBuffer`'s destructor, so you don't have to do
|
|||||||
|-------------------------|------------|
|
|-------------------------|------------|
|
||||||
| JsonVariant | 16 |
|
| JsonVariant | 16 |
|
||||||
| JsonArray of N element | 8 + 24 * N |
|
| JsonArray of N element | 8 + 24 * N |
|
||||||
| JsonObject of N element | 8 + 32 * N |
|
| JsonObject of N element | 8 + 32 * N |
|
||||||
|
|
||||||
|
#### Object size on x86 (tested on Visual Studio 2015)
|
||||||
|
|
||||||
|
| Type | Size |
|
||||||
|
|-------------------------|-------------|
|
||||||
|
| JsonVariant | 16 |
|
||||||
|
| JsonArray of N element | 12 + 24 * N |
|
||||||
|
| JsonObject of N element | 12 + 32 * N |
|
Reference in New Issue
Block a user