| 357 | return (int)((container*)ptr)->size(); |
| 358 | }; |
| 359 | virtual void *item_pointer(const type_identity *, void *ptr, int idx) const { |
| 360 | return &(*(container*)ptr)[idx]; |
| 361 | } |
| 362 | }; |
| 363 | |
| 364 | // Due to export issues, this stuff can only work in the main dll |
no outgoing calls
no test coverage detected