summaryrefslogtreecommitdiffstats
path: root/external/boost/rtti.patch.0
diff options
context:
space:
mode:
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 @@
};