summaryrefslogtreecommitdiff
path: root/demangle.cpp
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2022-07-18 13:33:35 -0400
committerKyleMiles <krm504@nyu.edu>2022-07-18 14:49:09 -0400
commit48b110f84dde41db725f6da814b2d662fef93a77 (patch)
treea9b9e82a56877ccecb5584fb14d9010ffdb18a0e /demangle.cpp
parent1b5e7f7bb4876694aed7f21bb620db926f5f91aa (diff)
Enable template simplifier by default; Rename setting `analysis.types.TemplateSimplifier` -> `analysis.types.templateSimplifier`
Diffstat (limited to 'demangle.cpp')
-rw-r--r--demangle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/demangle.cpp b/demangle.cpp
index 277c621f..17879f4f 100644
--- a/demangle.cpp
+++ b/demangle.cpp
@@ -6,7 +6,7 @@ namespace BinaryNinja {
bool DemangleMS(Architecture* arch, const std::string& mangledName, Type** outType, QualifiedName& outVarName,
const Ref<BinaryView>& view)
{
- const bool simplify = Settings::Instance()->Get<bool>("analysis.types.TemplateSimplifier", view);
+ const bool simplify = Settings::Instance()->Get<bool>("analysis.types.templateSimplifier", view);
return DemangleMS(arch, mangledName, outType, outVarName, simplify);
}
@@ -33,7 +33,7 @@ namespace BinaryNinja {
bool DemangleGNU3(Ref<Architecture> arch, const std::string& mangledName, Type** outType, QualifiedName& outVarName,
const Ref<BinaryView>& view)
{
- const bool simplify = Settings::Instance()->Get<bool>("analysis.types.TemplateSimplifier", view);
+ const bool simplify = Settings::Instance()->Get<bool>("analysis.types.templateSimplifier", view);
return DemangleGNU3(arch, mangledName, outType, outVarName, simplify);
}