| 807 | } |
| 808 | #ifndef WIN32 |
| 809 | else if (auto str = validate_stl_string_pointer(&item.ptr)) |
| 810 | { |
| 811 | FAIL("untyped pointer is actually stl-string with value \"" << *str << "\" (length " << str->length() << ")"); |
| 812 | } |
| 813 | #endif |
| 814 | else if (auto vtable_name = get_vtable_name(QueueItem(item.path, &item.ptr), cs, true)) |
| 815 | { |
no test coverage detected