Skip to content

Commit

Permalink
Fix build error on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
teusbenschop committed Jul 16, 2024
1 parent 5c7a3e6 commit 201b4cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executable/bibledit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void my_invalid_parameter_handler(const wchar_t* expression, const wchar_t* func
std::string sfunction(wfunction.begin(), wfunction.end());
std::wstring wfile (file);
std::string sfile(wfile.begin(), wfile.end());
Database_Logs::log ("Invalid parameter detected in function " + sfunction + " in file " + sfile + " line " + filter::strings::convert_to_string ((size_t)line) + " expression " + sexpression + ".");
Database_Logs::log ("Invalid parameter detected in function " + sfunction + " in file " + sfile + " line " + std::to_string(line) + " expression " + sexpression + ".");
}
#endif

Expand Down

0 comments on commit 201b4cb

Please sign in to comment.