Added size on x86

Benoît Blanchon
2016-08-25 17:53:07 +02:00
parent 001e5c2ae0
commit 8997f76ef5

@@ -87,3 +87,11 @@ 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 |