mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-17 15:42:30 +00:00
Fix Link Time Optimizations
This commit fixes compiling rTorrent with LTO (Link Time Optimizations). We just need to rename from variables in the directory_entry structure to avoid ODR and ZLIB conflicts.
This commit is contained in:
@@ -86,7 +86,7 @@ public:
|
||||
m_list.clear();
|
||||
|
||||
while (first != last)
|
||||
m_list.push_back((first++)->d_name);
|
||||
m_list.push_back((first++)->s_name);
|
||||
|
||||
if (m_window != NULL) {
|
||||
lt_log_print(torrent::LOG_UI_EVENTS, "element_string_list: set dirent range (visible)");
|
||||
|
||||
Reference in New Issue
Block a user