Skip to content

Commit

Permalink
add temporary workaround for widgets::widget
Browse files Browse the repository at this point in the history
  • Loading branch information
myk002 committed Jan 12, 2025
1 parent bdb1367 commit b1fcb19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion devel/scan-vtables.lua
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ function scan_ranges(g_src)
if demangled_name and
not demangled_name:match('[<>]') and
not demangled_name:match('^std::') and
not names[demangled_name]
not names[demangled_name] and
(g_src or demangled_name ~= 'widgets::widget') -- the widget in g_src takes precedence
then
local base_str = ''
if g_src then
Expand Down

0 comments on commit b1fcb19

Please sign in to comment.