You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The logic in formatVTable only looks at the previous function (in Linux order) when fixing up the overload order for Windows, but MSVC has moved the RemoveFunction overload from the end to be next to the other overload.
The solution is probably to pre-process the vtable to "move" the overloads together, as that looks like it would make the existing logic produce the correct result.
The text was updated successfully, but these errors were encountered:
Linux:
Windows:
The logic in
formatVTable
only looks at the previous function (in Linux order) when fixing up the overload order for Windows, but MSVC has moved theRemoveFunction
overload from the end to be next to the other overload.vtable/index.html
Line 351 in 0455af6
The solution is probably to pre-process the vtable to "move" the overloads together, as that looks like it would make the existing logic produce the correct result.
The text was updated successfully, but these errors were encountered: