Date: prev next · Thread: first prev next last
2015 Archives by date, by thread · List index


On 10/15/2015 09:45 PM, Norbert Thiebaud wrote:
The bulk of the errors are O[U]String[Buffer|Hash] related

The OUString thing can be mitigated by adding some stuff before the include

namespace rtl { class OUString; }
using rtl::OUString;
namespace rtl { class OUStringBuffer; }
using rtl::OUStringBuffer;
namespace rtl { class OString; }
using rtl::OString;
namespace rtl { class OStringBuffer; }
using rtl::OStringBuffer;
namespace rtl { class OUStringHash; }
using rtl::OUStringHash;

Feel free to fix those include files. (What appears to have become the canonic fix here would be to include rtl/oustring.hxx etc., rather than bothering to either declare the incomplete class plus using declaration, or declare the incomplete class and use qualified rtl::OUString etc. throughout the include file.)

that limit the failures to 233 failed or ~ 7%
the bulk of that being related to
"marked 'override' but does not override any member functions"
errors

That sounds odd; or is that just follow-up errors, and the real error being an unknown or incomplete base class?

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.