Skip to content

Commit

Permalink
fix: Compile issues using GCC
Browse files Browse the repository at this point in the history
  • Loading branch information
WerWolv committed Feb 22, 2024
1 parent ed905aa commit 1ede41c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/yara_rules/source/content/views/view_yara.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ namespace hex::plugin::yara {
this->clearResult();

for (auto &result : results) {
m_matchedRules->append_range(std::move(result.matchedRules));
m_consoleMessages->append_range(std::move(result.consoleMessages));
m_matchedRules->insert(m_matchedRules->end(), result.matchedRules.begin(), result.matchedRules.end());
m_consoleMessages->insert(m_consoleMessages->end(), result.consoleMessages.begin(), result.consoleMessages.end());
}

constexpr static color_t YaraColor = 0x70B4771F;
Expand Down

0 comments on commit 1ede41c

Please sign in to comment.