Returns the size (in bytes) of an object with n members.
| 86 | |
| 87 | // Returns the size (in bytes) of an object with n members. |
| 88 | constexpr size_t sizeofObject(size_t n) { |
| 89 | return 2 * n * ResourceManager::slotSize; |
| 90 | } |
| 91 | |
| 92 | ARDUINOJSON_END_PRIVATE_NAMESPACE |
no outgoing calls
no test coverage detected