From 72aa47972472e9d3d67a84dc19f654614cae7d8e Mon Sep 17 00:00:00 2001 From: Ryan Fleury Date: Fri, 11 Apr 2025 15:04:32 -0700 Subject: [PATCH] eliminate unnecessary usage of $. in mule auto view rules --- src/mule/mule_main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mule/mule_main.cpp b/src/mule/mule_main.cpp index c501a9de..430d352d 100644 --- a/src/mule/mule_main.cpp +++ b/src/mule/mule_main.cpp @@ -106,7 +106,7 @@ void optimized_struct_parameters_eval_tests(void); #include #include -raddbg_auto_view_rule(std::vector, slice($._Mypair._Myval2)); +raddbg_auto_view_rule(std::vector, slice(_Mypair._Myval2)); struct Basics{ char a; @@ -1624,7 +1624,7 @@ struct Bitmap int width; int height; }; -raddbg_auto_view_rule(Bitmap, lens:bitmap($.base, $.width, $.height)); +raddbg_auto_view_rule(Bitmap, lens:bitmap(base, width, height)); static unsigned int mule_bswap_u32(unsigned int x)