| 52 | |
| 53 | |
| 54 | void *cast_module_symbol(std::vector<std::string>(*t_path)()) |
| 55 | { |
| 56 | union cast_union |
| 57 | { |
| 58 | std::vector<std::string>(*in_ptr)(); |
| 59 | void *out_ptr; |
| 60 | }; |
| 61 | |
| 62 | cast_union c; |
| 63 | c.in_ptr = t_path; |
| 64 | return c.out_ptr; |
| 65 | } |
| 66 | |
| 67 | std::vector<std::string> default_search_paths() |
| 68 | { |
no outgoing calls
no test coverage detected