1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-04 05:39:01 +00:00

Remove declarations for nonexistent methods.

FingerTest.getattrbyname and FingerPrint.gettestbyname were removed in
r27713.
This commit is contained in:
david
2012-10-13 20:37:23 +00:00
parent 22270f6868
commit 2985509924

View File

@@ -192,8 +192,6 @@ struct FingerMatch {
struct FingerTest {
const char *name;
std::vector<struct AVal> results;
const struct AVal *getattrbyname(const char *name) const;
bool operator<(const FingerTest& other) const {
return strcmp(name, other.name) < 0;
}
@@ -202,7 +200,6 @@ struct FingerTest {
struct FingerPrint {
FingerMatch match;
std::vector<FingerTest> tests;
const FingerTest *gettestbyname(const char *name) const;
FingerPrint();
void sort();
};