| 3842 | details::handle<std::ifstream*, details::default_delete<std::ifstream*>> _file; |
| 3843 | |
| 3844 | std::vector<std::string> get_paths_from_env_variable_impl() |
| 3845 | { |
| 3846 | std::vector<std::string> paths; |
| 3847 | const char* prefixes_str = std::getenv("BACKWARD_CXX_SOURCE_PREFIXES"); |
| 3848 | if (prefixes_str && prefixes_str[0]) { |
| 3849 | paths = details::split_source_prefixes(prefixes_str); |
| 3850 | } |
| 3851 | return paths; |
| 3852 | } |
| 3853 | |
| 3854 | const std::vector<std::string>& get_paths_from_env_variable() |
| 3855 | { |
nothing calls this directly
no test coverage detected