summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2024-09-30 18:42:03 -0400
committerBrian Potchik <brian@vector35.com>2024-09-30 18:42:03 -0400
commitc8bef7267b0ec3b36167b679263bbfd4834a5b88 (patch)
tree0e65592597f8b76a5f9fa5b74e1ed3709554058f /binaryninjaapi.h
parent2e272f7efffb61eec2f54a740a9deabc4829c97d (diff)
Use title for generation of function analysis actions.
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 6dd1aa3b..898a1711 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -16271,8 +16271,9 @@ namespace BinaryNinja {
Prevent these from having docs autogenerated twice, due to an odd quirk with doxygen
*/
template <>
- std::vector<std::string> Settings::QueryProperty<std::vector<std::string>>(
- const std::string& key, const std::string& property);
+ std::string Settings::QueryProperty<std::string>(const std::string& key, const std::string& property);
+ template <>
+ std::vector<std::string> Settings::QueryProperty<std::vector<std::string>>(const std::string& key, const std::string& property);
template <>
bool Settings::Get<bool>(const std::string& key, Ref<BinaryView> view, BNSettingsScope* scope);
template <>