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
I was working on a bug and realized I had forgotten that ClangSharp will tell you about typedefs that show you might want a remapping (e.g. tagMY_STRUCT to MY_STRUCT). I added a bunch of new mappings from this data.
We can't just take all of these as remappings, because many of them are from typedefs that would make things worse. So, we would need a file to keep track of known ones we want to ignore. The build would then look for items using something like command above, but then filter out items using the known list.
The text was updated successfully, but these errors were encountered:
I was working on a bug and realized I had forgotten that ClangSharp will tell you about typedefs that show you might want a remapping (e.g. tagMY_STRUCT to MY_STRUCT). I added a bunch of new mappings from this data.
I used this command to display them:
We can't just take all of these as remappings, because many of them are from typedefs that would make things worse. So, we would need a file to keep track of known ones we want to ignore. The build would then look for items using something like command above, but then filter out items using the known list.
The text was updated successfully, but these errors were encountered: