From 4e75c3f34990fb9290a527ddcaa7f6fe406e9f8e Mon Sep 17 00:00:00 2001 From: david Date: Thu, 15 Sep 2011 18:41:46 +0000 Subject: [PATCH] Remove the constructor from OS_Classification. This is not needed not because cpe is not a simple pointer, and I want to be able to initialize this with curly brackets like a struct. --- global_structures.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/global_structures.h b/global_structures.h index 8b3cbade9..b12ec4629 100644 --- a/global_structures.h +++ b/global_structures.h @@ -167,13 +167,6 @@ struct OS_Classification { const char *OS_Generation; /* Can be NULL if unclassified */ const char *Device_Type; std::vector cpe; - - OS_Classification() { - OS_Vendor = NULL; - OS_Family = NULL; - OS_Generation = NULL; - Device_Type = NULL; - } }; struct FingerTest {