Skip to content

Commit 0a9e71e

Browse files
authored
Fix retrieve_tagconf_dir and retrieve_tagfile_dir functions (#228)
1 parent 5fbd359 commit 0a9e71e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/xutils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ namespace xcpp
112112
const char separator = '/';
113113
#endif
114114

115-
return prefix + separator + "etc" + separator + "xeus-cpp" + separator + "tags.d";
115+
return prefix + "etc" + separator + "xeus-cpp" + separator + "tags.d";
116116
}
117117

118118
std::string retrieve_tagfile_dir()
@@ -131,6 +131,6 @@ namespace xcpp
131131
const char separator = '/';
132132
#endif
133133

134-
return prefix + separator + "share" + separator + "xeus-cpp" + separator + "tagfiles";
134+
return prefix + "share" + separator + "xeus-cpp" + separator + "tagfiles";
135135
}
136136
}

0 commit comments

Comments
 (0)