We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5ba9fa commit 31e0073Copy full SHA for 31e0073
cbmc/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