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 13dc85b commit 1c73c4dCopy full SHA for 1c73c4d
jbmc/src/java_bytecode/jar_file.cpp
@@ -20,10 +20,7 @@ void jar_filet::initialize_file_index()
20
{
21
const size_t file_count=m_zip_archive.get_num_files();
22
for(size_t index=0; index<file_count; index++)
23
- {
24
- const auto filename=m_zip_archive.get_filename(index);
25
- m_name_to_index.emplace(filename, index);
26
- }
+ m_name_to_index.emplace(m_zip_archive.get_filename(index), index);
27
}
28
29
/// This constructor creates a jar_file object whose contents
0 commit comments