Skip to content

Commit

Permalink
fix: file path type error
Browse files Browse the repository at this point in the history
  • Loading branch information
Serein207 committed Sep 26, 2024
1 parent 7f6603d commit 953a037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Infrastructure/Utils/Config.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const std::filesystem::path localePath =
#ifdef EVENTO_DEBUG
LOCALE_DIR;
#else
boost::dll::program_location().parent_path() / "locale";
std::filesystem::path{(boost::dll::program_location().parent_path() / "locale").string()};
#endif // EVENTO_DEBUG

inline struct Settings {
Expand Down

0 comments on commit 953a037

Please sign in to comment.