| #
914d351e
|
| 16-Jul-2025 |
John Bampton <jbampton@users.noreply.github.com> |
pre-commit auto clean trailing whitespace in dxp and hxx files (#381)
A huge auto clean up by pre-commit and I can make smaller PRs if needed.
Seems we have a lot of extra whitespace junk in our co
pre-commit auto clean trailing whitespace in dxp and hxx files (#381)
A huge auto clean up by pre-commit and I can make smaller PRs if needed.
Seems we have a lot of extra whitespace junk in our code base
The NeverEnding Story was a great film back in the old days :)
Great video and theme song by Limahl
https://www.youtube.com/watch?v=lHytjEj7B9g
https://en.wikipedia.org/wiki/The_NeverEnding_Story_(film)
show more ...
|
| #
bb4cf3de
|
| 08-Nov-2024 |
Don Lewis <truckman@apache.org> |
Fix build with FreeBSD clang version 19.1.2
Fix this build error:
In file included from /wrkdirs/usr/ports/editors/openoffice-4/work/aoo-4.1.15/main/writerfilter/source/ooxml/OOXMLFactory.cxx:28: I
Fix build with FreeBSD clang version 19.1.2
Fix this build error:
In file included from /wrkdirs/usr/ports/editors/openoffice-4/work/aoo-4.1.15/main/writerfilter/source/ooxml/OOXMLFactory.cxx:28: In file included from /wrkdirs/usr/ports/editors/openoffice-4/work/aoo-4.1.15/main/writerfilter/source/ooxml/OOXMLFactory.hxx:39: In file included from .../main/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:38: .../main/writerfilter/source/ooxml/RefAndPointer.hxx:104:18: error: no member named 'getHandler' in 'RefAndPointer<Interface, ChildClass>'; did you mean 'mpHandler'? 104 | set(rSrc.getHandler()); | ^~~~~~~~~~ | mpHandler .../main/writerfilter/source/ooxml/RefAndPointer.hxx:39:26: note: 'mpHandler' declared here 39 | mutable ChildClass * mpHandler; .../main/writerfilter/source/ooxml/RefAndPointer.hxx:39:26: note: 'mpHandler' declared here 39 | mutable ChildClass * mpHandler; |
when building with:
FreeBSD clang version 19.1.2 (https://github.com/llvm/llvm-project.git llvmorg-19.1.2-0-g7ba7d8e2f7b6)
It appears that clang 19 does more sanity checks of unused class methods than gcc, the old version of Microsoft Visual C++ used by the AOO project, and older versions of clang.
The assign method in the RefAndPointer class has been broken since before the code import from hg. The proper fix is non-obvious and since this method appears to be unused, the easiest way of avoiding this error is to comment out the broken method.
show more ...
|