MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / get_paths_from_env_variable_impl

Method get_paths_from_env_variable_impl

src/backward.h:3844–3852  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 1

split_source_prefixesFunction · 0.85

Tested by

no test coverage detected