* Return the size in bytes of a vector. * @param vector The std::vector to find the size of. * @param conv VarType type of variable that is used for calculating the size. */
| 1472 | * @param conv VarType type of variable that is used for calculating the size. |
| 1473 | */ |
| 1474 | static size_t SlCalcRefVectorLen(const void *vector, VarType conv) |
| 1475 | { |
| 1476 | return SlStorageHelper<std::vector, void *>::SlCalcLen(vector, conv, SL_REF); |
| 1477 | } |
| 1478 | |
| 1479 | /** |
| 1480 | * Save/Load a vector. |
no outgoing calls
no test coverage detected