From 324b6beefe7b24033fec02ce5958317618f957ff Mon Sep 17 00:00:00 2001 From: dmiller Date: Tue, 7 Jul 2015 11:43:31 +0000 Subject: [PATCH] Fix build on VS2015 due to incorrectly forward declaring FingerMatch as class not struct --- FPEngine.h | 2 +- NmapOps.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FPEngine.h b/FPEngine.h index 241fb3078..89f3d5102 100644 --- a/FPEngine.h +++ b/FPEngine.h @@ -139,7 +139,7 @@ class FPProbe; class Target; class FingerPrintResultsIPv6; -class FingerMatch; +struct FingerMatch; /****************************************************************************** * CONSTANT DEFINITIONS * diff --git a/NmapOps.h b/NmapOps.h index fb13f4d6a..5728a506a 100644 --- a/NmapOps.h +++ b/NmapOps.h @@ -133,7 +133,7 @@ #include class FingerPrintDB; -class FingerMatch; +struct FingerMatch; class NmapOps { public: