summaryrefslogtreecommitdiffstats
path: root/external/boost/rtti.patch.0
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2017-02-01 12:49:48 +0100
committerDavid Tardon <dtardon@redhat.com>2017-02-03 08:17:06 +0000
commit2c1ae441892da3a40cde3a7a796e97cbe9f1da2a (patch)
tree131a2cba46c31ef7fde0c6c9e4f11f5e48e5da33 /external/boost/rtti.patch.0
parentadd OCT2BIN test case (diff)
downloadcore-2c1ae441892da3a40cde3a7a796e97cbe9f1da2a.tar.gz
core-2c1ae441892da3a40cde3a7a796e97cbe9f1da2a.zip
upload boost 1.63.0
Change-Id: I7f896bb9650f68626b4bcfe96c9c41fafeab436a Reviewed-on: https://gerrit.libreoffice.org/33827 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'external/boost/rtti.patch.0')
-rw-r--r--external/boost/rtti.patch.010
1 files changed, 5 insertions, 5 deletions
diff --git a/external/boost/rtti.patch.0 b/external/boost/rtti.patch.0
index 09fc95ced444..104fd17989a1 100644
--- a/external/boost/rtti.patch.0
+++ b/external/boost/rtti.patch.0
@@ -3,14 +3,14 @@ Visible function type RTTI for Clang -fsanitize=function
--- boost/function/function_base.hpp
+++ boost/function/function_base.hpp
@@ -97,7 +97,7 @@
- * object pointers, and a structure that resembles a bound
- * member function pointer.
- */
+ } obj_ref;
+ };
+
- union function_buffer
+ union BOOST_SYMBOL_VISIBLE function_buffer
{
- // For pointers to function objects
- mutable void* obj_ptr;
+ // Type-specific union members
+ mutable function_buffer_members members;
@@ -159,7 +159,7 @@
};