https://bugs.documentfoundation.org/show_bug.cgi?id=113885

--- Comment #6 from Julien Nabet <serval2...@yahoo.fr> ---
@devs:
I gave the wrong pointer, it's some lines below in fact:
https://opengrok.libreoffice.org/xref/core/vcl/unx/gtk/gtksys.cxx#122
emplace_back replaced push_back with c856ae17aff5db258eb16713f56fce9f28400d47
@@ -119,7 +119,7 @@ GtkSalSystem::countScreenMonitors()
                     GdkRectangleCoincident()));
             nMonitors = std::distance(aGeometries.begin(), aUniqueEnd);
         }
-        maScreenMonitors.push_back(std::make_pair(pScreen, nMonitors));
+        maScreenMonitors.emplace_back(pScreen, nMonitors);
     }
 }
c++filt _ZNSt5dequeImSaImEE16_M_push_back_auxIJRKmEEEvDpOT_ 
gives:
void std::deque<unsigned long, std::allocator<unsigned long>
>::_M_push_back_aux<unsigned long const&>(unsigned long const&)

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to