1
0
mirror of synced 2025-01-18 17:14:13 +01:00

fix: Remove unused member variable in HexEditor class (#1129)

Fixes `error: private field 'm_grayZeroHighlighter' is not used
[-Werror,-Wunused-private-field]`
This commit is contained in:
KOLANICH 2023-06-10 22:49:34 +00:00 committed by GitHub
parent ef9cb31204
commit e8ca139246
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -193,7 +193,6 @@ namespace hex::plugin::builtin::ui {
u16 m_bytesPerRow = 16;
ContentRegistry::HexEditor::DataVisualizer *m_currDataVisualizer;
u32 m_grayZeroHighlighter = 0;
char m_unknownDataCharacter = '?';
bool m_shouldJumpToSelection = false;
@ -232,4 +231,4 @@ namespace hex::plugin::builtin::ui {
std::function<void(u64, const u8 *, size_t)> m_tooltipCallback = defaultTooltipCallback;
};
}
}