From 2985509924a1cea24fd5aeaff14eb12b1188e9e6 Mon Sep 17 00:00:00 2001 From: david Date: Sat, 13 Oct 2012 20:37:23 +0000 Subject: [PATCH] Remove declarations for nonexistent methods. FingerTest.getattrbyname and FingerPrint.gettestbyname were removed in r27713. --- global_structures.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/global_structures.h b/global_structures.h index 5a0d339f1..c80ad0329 100644 --- a/global_structures.h +++ b/global_structures.h @@ -192,8 +192,6 @@ struct FingerMatch { struct FingerTest { const char *name; std::vector 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 tests; - const FingerTest *gettestbyname(const char *name) const; FingerPrint(); void sort(); };