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