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
When using delegates, a new Int v_n variable will be added for each delegates used.
These local variables are never used, assigned nor accessed, which should make them safe to be removed.
Instead of just removing these variables directly as the converter already knows that these variables are delegate vars. I want to have a post processing step where all methods are optimized; regardless if delegates are being used or not and remove all unused variables.
This is not a bug and it does not break the usage of Clr2Papyrus, it is just completely unecessary to keep them.
The text was updated successfully, but these errors were encountered:
When using delegates, a new Int v_n variable will be added for each delegates used.
These local variables are never used, assigned nor accessed, which should make them safe to be removed.
Instead of just removing these variables directly as the converter already knows that these variables are delegate vars. I want to have a post processing step where all methods are optimized; regardless if delegates are being used or not and remove all unused variables.
This is not a bug and it does not break the usage of Clr2Papyrus, it is just completely unecessary to keep them.
The text was updated successfully, but these errors were encountered: