| 51 | std::string issue_24_dataset_dir_path = std::string {ALP_CMAKE_SOURCE_DIR} + "/data/issue/"; |
| 52 | |
| 53 | explicit paths() { |
| 54 | const auto alp_dataset_dir_path_env_variable = std::getenv("ALP_DATASET_DIR_PATH"); |
| 55 | if (alp_dataset_dir_path_env_variable) { alp_dataset_binary_dir_path = alp_dataset_dir_path_env_variable; } |
| 56 | |
| 57 | const auto hs_env_variable = std::getenv("HURRICANE_ISABEL_DATASET_DIR_PATH"); |
| 58 | if (hs_env_variable) { hs = hs_env_variable; } |
| 59 | } |
| 60 | }; |
| 61 | |
| 62 | inline paths get_paths() { |
nothing calls this directly
no outgoing calls
no test coverage detected