diff options
| author | Brian Potchik <brian@vector35.com> | 2024-09-30 18:42:03 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2024-09-30 18:42:03 -0400 |
| commit | c8bef7267b0ec3b36167b679263bbfd4834a5b88 (patch) | |
| tree | 0e65592597f8b76a5f9fa5b74e1ed3709554058f /binaryninjaapi.h | |
| parent | 2e272f7efffb61eec2f54a740a9deabc4829c97d (diff) | |
Use title for generation of function analysis actions.
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 5 |
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 <> |
