Skip to content

Commit

Permalink
Fix retrieve_tagconf_dir and retrieve_tagfile_dir functions (compiler…
Browse files Browse the repository at this point in the history
  • Loading branch information
anutosh491 authored Jan 20, 2025
1 parent 5fbd359 commit 0a9e71e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xutils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ namespace xcpp
const char separator = '/';
#endif

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

std::string retrieve_tagfile_dir()
Expand All @@ -131,6 +131,6 @@ namespace xcpp
const char separator = '/';
#endif

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

0 comments on commit 0a9e71e

Please sign in to comment.