Set any vector element as a string, regardless of type what it is.
| 367 | |
| 368 | // Set any vector element as a string, regardless of type what it is. |
| 369 | inline void SetAnyVectorElemS(VectorOfAny *vec, reflection::BaseType elem_type, |
| 370 | size_t i, const char *val) { |
| 371 | SetAnyValueS(elem_type, vec->Data() + GetTypeSize(elem_type) * i, val); |
| 372 | } |
| 373 | |
| 374 | // ------------------------- RESIZING SETTERS ------------------------- |
| 375 |
nothing calls this directly
no test coverage detected