office-gobmx/external/boost/gcc9.patch.0
Stephan Bergmann e7b8728f5c external/boost: silence -Werror=deprecated-copy (GCC trunk towards GCC 9)
Change-Id: I25703979ebe94649f9cf1464d282b21a70cfe1fa
Reviewed-on: https://gerrit.libreoffice.org/58041
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-07-26 12:32:54 +02:00

10 lines
392 B
Text

--- boost/bimap/detail/map_view_iterator.hpp
+++ boost/bimap/detail/map_view_iterator.hpp
@@ -165,6 +165,7 @@
: base_(iter.base()) {}
const_map_view_iterator(map_view_iterator<Tag,BimapCore> i)
: base_(i.base()) {}
+ const_map_view_iterator & operator = (const_map_view_iterator const &) = default;
BOOST_DEDUCED_TYPENAME base_::reference dereference() const
{