fix(hashtree): resolve member access via overloaded operator->#346
Open
luozhiya wants to merge 1 commit intoMoganLab:mainfrom
Open
fix(hashtree): resolve member access via overloaded operator->#346luozhiya wants to merge 1 commit intoMoganLab:mainfrom
luozhiya wants to merge 1 commit intoMoganLab:mainfrom
Conversation
|
why not merged? 😢 |
robertkirkman
added a commit
to robertkirkman/termux-packages
that referenced
this pull request
Feb 4, 2026
- Apply MoganLab/lolly#346 to fix `error: ‘class hashtree<K, V>’ has no member named ‘contains’` with NDK r29 - Apply `DOCTEST_VERSION = "2.4.12"` to `moebius` dependency to fix build with CMake 4 - Apply `XMAKE_GLOBALDIR="$TERMUX_PKG_TMPDIR"` to fix `ld.lld: error: /home/builder/.xmake/packages/s/s7/20241122/2613d5544f43431dad530be0c61b8a28/lib/libs7.a(s7.c.o) is incompatible with armelf_linux_eabi` - Apply backup and restore of `libcurl.so` and `xmake` to work around corruption of those binaries by something inside `mogan`
robertkirkman
added a commit
to robertkirkman/termux-packages
that referenced
this pull request
Feb 4, 2026
- Progress on termux#23492 - Apply MoganLab/lolly#346 to fix `error: ‘class hashtree<K, V>’ has no member named ‘contains’` with NDK r29 - Apply `DOCTEST_VERSION = "2.4.12"` to `moebius` dependency to fix build with CMake 4 - Apply `XMAKE_GLOBALDIR="$TERMUX_PKG_TMPDIR"` to fix `ld.lld: error: /home/builder/.xmake/packages/s/s7/20241122/2613d5544f43431dad530be0c61b8a28/lib/libs7.a(s7.c.o) is incompatible with armelf_linux_eabi` - Apply backup and restore of `libcurl.so` and `xmake` to work around corruption of those binaries by something inside `mogan`
robertkirkman
added a commit
to termux/termux-packages
that referenced
this pull request
Feb 5, 2026
- Progress on #23492 - Apply MoganLab/lolly#346 to fix `error: ‘class hashtree<K, V>’ has no member named ‘contains’` with NDK r29 - Apply `DOCTEST_VERSION = "2.4.12"` to `moebius` dependency to fix build with CMake 4 - Apply `XMAKE_GLOBALDIR="$TERMUX_PKG_TMPDIR"` to fix `ld.lld: error: /home/builder/.xmake/packages/s/s7/20241122/2613d5544f43431dad530be0c61b8a28/lib/libs7.a(s7.c.o) is incompatible with armelf_linux_eabi` - Apply backup and restore of `libcurl.so` and `xmake` to work around corruption of those binaries by something inside `mogan`
termux-pacman-bot
added a commit
to termux-pacman/termux-packages
that referenced
this pull request
Feb 5, 2026
- Progress on termux/termux-packages#23492 - Apply MoganLab/lolly#346 to fix `error: ‘class hashtree<K, V>’ has no member named ‘contains’` with NDK r29 - Apply `DOCTEST_VERSION = "2.4.12"` to `moebius` dependency to fix build with CMake 4 - Apply `XMAKE_GLOBALDIR="$TERMUX_PKG_TMPDIR"` to fix `ld.lld: error: /home/builder/.xmake/packages/s/s7/20241122/2613d5544f43431dad530be0c61b8a28/lib/libs7.a(s7.c.o) is incompatible with armelf_linux_eabi` - Apply backup and restore of `libcurl.so` and `xmake` to work around corruption of those binaries by something inside `mogan`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
In Arch Linux's latest build, compiling
hashtree.ippfails with:Solution
Fixed by explicitly using (*this)->contains() and (*this)->children() to ensure correct member access via operator->.
Log
Also see https://github.com/luozhiya/arch-mogan/actions/runs/14946817328/job/41991193339