From 132164c3deaf787ee9a35706a37588170126a39b Mon Sep 17 00:00:00 2001 From: WerWolv Date: Mon, 2 Aug 2021 12:08:54 +0200 Subject: [PATCH] patterns: Fix type operators not working correctly --- plugins/libimhex/source/lang/parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/libimhex/source/lang/parser.cpp b/plugins/libimhex/source/lang/parser.cpp index 85c01a5fe..f26dc857e 100644 --- a/plugins/libimhex/source/lang/parser.cpp +++ b/plugins/libimhex/source/lang/parser.cpp @@ -84,7 +84,7 @@ namespace hex::lang { else throwParseError("expected member name or 'parent' keyword", -1); } else - return TO_NUMERIC_EXPRESSION(new ASTNodeRValue(path)); + return new ASTNodeRValue(path); } //