mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 15:57:03 -05:00
fix: Ranges found by find view not being highlighted
This commit is contained in:
2
lib/external/libwolv
vendored
2
lib/external/libwolv
vendored
Submodule lib/external/libwolv updated: 433d230331...4948950798
@@ -44,7 +44,7 @@ namespace hex::plugin::builtin {
|
||||
protected:
|
||||
bool m_dataValid = false;
|
||||
size_t m_dataSize = 0x00;
|
||||
wolv::container::IntervalTree<std::vector<u8>, u64, 0> m_data;
|
||||
wolv::container::IntervalTree<std::vector<u8>, u64> m_data;
|
||||
|
||||
std::fs::path m_sourceFilePath;
|
||||
};
|
||||
|
||||
@@ -95,7 +95,7 @@ namespace hex::plugin::builtin {
|
||||
|
||||
} m_searchSettings, m_decodeSettings;
|
||||
|
||||
using OccurrenceTree = wolv::container::IntervalTree<Occurrence, u64, 0>;
|
||||
using OccurrenceTree = wolv::container::IntervalTree<Occurrence, u64>;
|
||||
|
||||
PerProvider<std::vector<Occurrence>> m_foundOccurrences, m_sortedOccurrences;
|
||||
PerProvider<OccurrenceTree> m_occurrenceTree;
|
||||
|
||||
Reference in New Issue
Block a user