We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb8f4dc commit ae315d7Copy full SHA for ae315d7
include/rootbench/RBConfig.h
@@ -12,14 +12,14 @@ namespace RB {
12
///
13
///\returns invalid path if the variable is not set.
14
15
- const char* GetTempFs() {
+ std::string GetTempFs() {
16
if (char* tempfs = std::getenv("RB_TEMP_FS"))
17
return tempfs;
18
19
rb_abort("Please set the RB_TEMP_FS env variable!");
20
}
21
22
- const char* GetRootSys() {
+ std::string GetRootSys() {
23
if (char* rootsys = std::getenv("ROOTSYS"))
24
return rootsys;
25
0 commit comments