3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 01:24:08 +00:00

Use char version of find_last_of when possible.

This commit is contained in:
Bruce Mitchener 2022-07-02 21:04:09 +07:00 committed by Nikolaj Bjorner
parent b3612264a9
commit 8313282cda

View file

@ -1885,7 +1885,7 @@ void test_out_dir(std::string out_dir) {
void find_dir_and_file_name(std::string a, std::string & dir, std::string& fn) {
// todo: make it system independent
size_t last_slash_pos = a.find_last_of("/");
size_t last_slash_pos = a.find_last_of('/');
if (last_slash_pos >= a.size()) {
std::cout << "cannot find file name in " << a << std::endl;
throw;