--- misc/boost_1_44_0/boost/utility/compare_pointees.hpp 2011-02-10 16:39:05.960176555 +0000 +++ misc/build/boost_1_44_0/boost/utility/compare_pointees.hpp 2011-02-10 16:40:59.091423279 +0000 @@ -29,7 +29,11 @@ inline bool equal_pointees ( OptionalPointee const& x, OptionalPointee const& y ) { - return (!x) != (!y) ? false : ( !x ? true : (*x) == (*y) ) ; + if (!x && !y) + return true; + if (!x || !y) + return false; + return (*x) == (*y); } template --- misc/boost_1_44_0/boost/spirit/home/classic/core/primitives/impl/numerics.ipp 2011-03-02 12:22:47.222870106 +0000 +++ misc/build/boost_1_44_0/boost/spirit/home/classic/core/primitives/impl/numerics.ipp 2011-03-02 12:22:47.222870106 +0000 @@ -219,6 +219,20 @@ } }; + template + struct negative_accumulate + { + // Use this accumulator if number is negative + static bool add(unsigned char& n, unsigned digit) + { + n *= Radix; + if (n < digit) + return false; + n -= digit; + return true; + } + }; + template inline bool allow_more_digits(std::size_t i) { --- misc/boost_1_44_0/boost/optional/optional.hpp 2011-04-05 13:19:01.223587256 +0100 +++ misc/build/boost_1_44_0/boost/optional/optional.hpp 2011-04-05 13:19:01.223587256 +0100 @@ -31,6 +31,8 @@ #include "boost/optional/optional_fwd.hpp" +#include + #if BOOST_WORKAROUND(BOOST_MSVC, == 1200) // VC6.0 has the following bug: // When a templated assignment operator exist, an implicit conversion @@ -114,6 +116,11 @@ public: + aligned_storage() + { + memset(&dummy_, 0, sizeof(dummy_)); + } + void const* address() const { return &dummy_.data[0]; } void * address() { return &dummy_.data[0]; } } ; stro/collabora/cd-5.3-3.1'>distro/collabora/cd-5.3-3.1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Behrens <thorsten.behrens@allotropia.de>2023-11-20 00:51:56 +0100
committerThorsten Behrens <thorsten.behrens@allotropia.de>2023-11-20 01:07:18 +0100
commit90990aae9e0424d1d0a9e708e1adffbfe7fecfc0 (patch)
tree0ba3f891a44641f453c7638488ac53b932b478a3 /extensions/source/abpilot/fieldmappingimpl.hxx
parent8bc30d66af5b920d6be2be09d2bf350c8b6aff96 (diff)
Revert "WASM: headless conversion without QT5 and with unique html" erbose SAL_INFO() calls for the "vcl.cg" tagTor Lillqvist 2019-06-06CoreTextStyle::mbFauxBold shall presumably be boolStephan Bergmann 2019-05-22tdf#124271 use the bitmap context, handle scalingTomaž Vajngerl 2019-05-20Blind fix for macOS tb49Stephan Bergmann 2019-05-18use CGContextHolder in AquaSalBitmapTomaž Vajngerl 2019-05-18use CGContextHolder in AquaVirtualDeviceTomaž Vajngerl 2019-05-18Wrap CGLayer into a CGLayerHolder class and move code to use itTomaž Vajngerl 2019-05-18macOS: store VirtualDevice size in an instance variableTomaž Vajngerl 2019-05-18Move CGCotextHolder to separate file - CGHelpers.hxxTomaž Vajngerl 2019-05-17handle CG state save/restore in ContextHolder classTomaž Vajngerl 2019-05-17Wrap CGContext into a ContextHolder classTomaž Vajngerl 2019-04-21tdf#101854 Move to CommonSalLayout removed faux bold in macosTomaž Vajngerl