mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-27 23:37:05 -05:00
fix: correctly compute nameSpace in TextHighlighter::getVariableTypeName()
This commit is contained in:
@@ -1718,7 +1718,7 @@ namespace hex::plugin::builtin {
|
||||
std::string nameSpace;
|
||||
while (peek(tkn::Operator::ScopeResolution)) {
|
||||
next(-1);
|
||||
nameSpace.insert(0, "::" + typeStr);
|
||||
nameSpace.insert(0, "::");
|
||||
nameSpace.insert(0, getValue<Token::Identifier>(0)->get());
|
||||
next(-1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user