diff options
author | Josh Stone <jistone@redhat.com> | 2009-09-16 17:38:53 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-09-16 17:38:53 -0700 |
commit | 04ddd303348c0ffb71c6f57eacb2282bd1d61b3a (patch) | |
tree | 5f18a004bd8c270c6d6acd80c9c2cbb371b55d2b | |
parent | 9f7d5236c8fb1fd84636656416e1dad531e9586d (diff) | |
download | systemtap-steved-04ddd303348c0ffb71c6f57eacb2282bd1d61b3a.tar.gz systemtap-steved-04ddd303348c0ffb71c6f57eacb2282bd1d61b3a.tar.xz systemtap-steved-04ddd303348c0ffb71c6f57eacb2282bd1d61b3a.zip |
Remove the unused function_name_final_match
* dwflpp.cxx (dwflpp::function_name_final_match): Removed.
-rw-r--r-- | dwflpp.cxx | 7 | ||||
-rw-r--r-- | dwflpp.h | 1 |
2 files changed, 0 insertions, 8 deletions
@@ -266,13 +266,6 @@ dwflpp::function_name_matches(const string& pattern) } -bool -dwflpp::function_name_final_match(const string& pattern) -{ - return module_name_final_match (pattern); -} - - static const char *offline_search_modname = NULL; static int offline_search_match_p = 0; @@ -192,7 +192,6 @@ struct dwflpp bool function_name_matches_pattern(const std::string& name, const std::string& pattern); bool function_name_matches(const std::string& pattern); - bool function_name_final_match(const std::string& pattern); void iterate_over_modules(int (* callback)(Dwfl_Module *, void **, const char *, Dwarf_Addr, |