From edcb0aefa624898b10e80856bbe28ff3a3f88e23 Mon Sep 17 00:00:00 2001 From: William Johnson Date: Mon, 19 Jul 2021 12:01:44 -0700 Subject: [PATCH] Fix compile issue on windows. --- src/FileDragUploadResource.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/FileDragUploadResource.cpp b/src/FileDragUploadResource.cpp index 3800ef7e..5c0f2bef 100644 --- a/src/FileDragUploadResource.cpp +++ b/src/FileDragUploadResource.cpp @@ -47,12 +47,15 @@ #include -#include "InterSpec/InterSpecApp.h" #include "SpecUtils/Filesystem.h" -#if( !ANDROID && !IOS ) +#include "InterSpec/InterSpecApp.h" #include "InterSpec/FileDragUploadResource.h" + +#ifdef _WIN32 +#include "SpecUtils/StringAlgo.h" #endif + using namespace Wt; using namespace std;