* Return the size in bytes of a list. * @param list The std::list to find the size of. * @param conv VarType type of variable that is used for calculating the size. */
| 1445 | * @param conv VarType type of variable that is used for calculating the size. |
| 1446 | */ |
| 1447 | static inline size_t SlCalcRefListLen(const void *list, VarType conv) |
| 1448 | { |
| 1449 | return SlStorageHelper<std::list, void *>::SlCalcLen(list, conv, SL_REF); |
| 1450 | } |
| 1451 | |
| 1452 | /** |
| 1453 | * Save/Load a list. |
no outgoing calls
no test coverage detected