diff options
Diffstat (limited to 'libcxxabi/src/cxa_exception.cpp')
-rw-r--r-- | libcxxabi/src/cxa_exception.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxxabi/src/cxa_exception.cpp b/libcxxabi/src/cxa_exception.cpp index 8a77e8c..73ba21c 100644 --- a/libcxxabi/src/cxa_exception.cpp +++ b/libcxxabi/src/cxa_exception.cpp @@ -194,7 +194,7 @@ void *__cxa_allocate_exception(size_t thrown_size) throw() { static_cast<__cxa_exception *>((void *)(raw_buffer + header_offset)); // We warn on memset to a non-trivially castable type. We might want to // change that diagnostic to not fire on a trivially obvious zero fill. - ::memset(static_cast<void *>(exception_header), 0, actual_size); + ::memset(static_cast<void*>(exception_header), 0, actual_size); return thrown_object_from_cxa_exception(exception_header); } |