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