--- misc/boost_1_44_0/boost/function/function_base.hpp +++ misc/build/boost_1_44_0/boost/function/function_base.hpp @@ -314,17 +322,17 @@ { if (op == clone_functor_tag || op == move_functor_tag) { const functor_type* in_functor = - reinterpret_cast(&in_buffer.data); + static_cast(static_cast(&in_buffer.data)); new (reinterpret_cast(&out_buffer.data)) functor_type(*in_functor); if (op == move_functor_tag) { - functor_type* f = reinterpret_cast(&in_buffer.data); + functor_type* f = static_cast(static_cast(&in_buffer.data)); (void)f; // suppress warning about the value of f not being used (MSVC) f->~Functor(); } } else if (op == destroy_functor_tag) { // Some compilers (Borland, vc6, ...) are unhappy with ~functor_type. - functor_type* f = reinterpret_cast(&out_buffer.data); + functor_type* f = static_cast(static_cast(&out_buffer.data)); (void)f; // suppress warning about the value of f not being used (MSVC) f->~Functor(); } else if (op == check_functor_type_tag) { >distro/cib/libreoffice-5-1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
4854 it seems long is not enough on 32 bit"
AgeCommit message (Expand)Author
2017-08-11Removing unused SfxItemPool serialisation from svxVarun Dhall
2017-04-27Translate German comments (rest of svx/ except svx/source/form/)Johnny_M
2016-10-20loplugin:expandablemethodds in svxNoel Grandin
2016-04-14loplugin:passstuffbyref in svxNoel Grandin
2016-02-09Remove excess newlinesChris Sherlock
2015-11-115th step to remove tools/rtti.hxxOliver Specht
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
2015-10-31com::sun::star->css in svxNoel Grandin
2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann
2014-03-27Second batch of adding SAL_OVERRIDE to overriding function declarationsStephan Bergmann
2014-03-26Split TYPEINFO into plain and TYPEINFO_OVERRIDEStephan Bergmann
2014-02-26Remove visual noise from svxAlexander Wilms
2014-01-10SfxPoolItem::operator ==, != should return boolStephan Bergmann
2013-10-28fixincludeguards.sh: svxThomas Arnhold
Jan Holesovsky
2014-10-20loplugin: cstylecastNoel Grandin
2014-10-16fdo#84854 it seems long is not enough on 32 bitDavid Tardon
2014-10-09fdo#81356: convert Fraction to boost::rational<long> - wipJuan Picca
2014-09-01Consistency around SvxB3DVectorItem in svx/svx3ditems.hxxStephan Bergmann
2014-09-01Consistency around SvxColorItem in svx/svx3ditems.hxxStephan Bergmann
2014-09-01Consistency around SfxUInt16Item in svx/svx3ditems.hxxStephan Bergmann
2014-09-01Consistency around SfxBoolItem in svx/svx3ditems.hxxStephan Bergmann
2014-08-08Cleanup OUStrings in CustomShapesJoren De Cuyper
2014-07-19XFillStyle -> css::drawing::FillStyleMiklos Vajna
2014-07-04coverity#704499-501 Division by zeroNorbert Thiebaud
2014-05-10coverity#708341 Uninitialized scalar fieldCaolán McNamara
2014-04-15svx: sal_Bool->boolNoel Grandin
2014-04-11coverity#708341 Uninitialized scalar fieldCaolán McNamara
2014-03-11svx: sal_Bool->boolNoel Grandin
2014-03-11svx: sal_Bool->boolNoel Grandin
2014-02-26Remove visual noise from svxAlexander Wilms
2014-01-28bool improvementsStephan Bergmann
2013-10-01convert remnants of String in SVX to StringNoel Grandin
2013-09-09Resolves: #i122777# Corrected texture mapping for 3D CustomShapesArmin Le Grand
2013-09-05convert svx/source/customshapes/*.cxx from String to OUStringNoel Grandin
2013-08-28XubString->OUStringCaolán McNamara
2013-05-19Related: #i120569# Corrected 3D object creationsArmin Le Grand
2013-05-19Resolves: #i120569# Enhanced 3D visualisation of line custom shapesArmin Le Grand
2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák
2013-03-15Related: #i119125# change XFillBitmapItem to work with GraphicObjectArmin Le Grand
2013-03-15sal_Bool to boolTakeshi Abe
2013-03-14-Werror,-Wunused-functionTakeshi Abe
2013-03-14mark them as localTakeshi Abe
2013-01-24Remove RTL_CONSTASCII_USTRINGPARAM in svxChr. Rossmanith
2012-11-27re-base on ALv2 code. Includes:Michael Meeks