We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7548fb1 commit 2493daeCopy full SHA for 2493dae
src/util/file_util.cpp
@@ -210,7 +210,7 @@ std::string fileutl_parse_extension_in_pathname(const std::string &pathname)
210
const std::size_t slash_idx=
211
fwd_slash_idx==std::string::npos ? bwd_slash_idx :
212
bwd_slash_idx==std::string::npos ? fwd_slash_idx :
213
- std::max(fwd_slash_idx, bwd_slash_idx);
+ std::max(fwd_slash_idx, bwd_slash_idx);
214
# elif defined(__linux__) || defined(__APPLE__)
215
const std::size_t slash_idx=pathname.find_last_of('/');
216
# else
0 commit comments