GP-2542 - Fix MSFT Demangler Calling Conventions flag

This commit is contained in:
ghizard 2022-09-13 07:39:02 -04:00
parent 483bcc171c
commit 15a8ec922a

View file

@ -67,6 +67,9 @@ public class MicrosoftDemanglerAnalyzer extends AbstractDemanglerAnalyzer {
public void optionsChanged(Options options, Program program) {
applyFunctionSignature =
options.getBoolean(OPTION_NAME_APPLY_SIGNATURE, applyFunctionSignature);
applyCallingConvention =
options.getBoolean(OPTION_NAME_APPLY_CALLING_CONVENTION, applyCallingConvention);
}
@Override