From b67dee8a57db2f39bf220a9f89e06d3b395ef6aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20D=C3=ADaz=20M=C3=A1s?= Date: Tue, 1 Feb 2022 16:01:11 +0100 Subject: [PATCH] Fix build on linux --- src/xmp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xmp.cpp b/src/xmp.cpp index ad7a1490..ce71364d 100644 --- a/src/xmp.cpp +++ b/src/xmp.cpp @@ -655,7 +655,7 @@ namespace Exiv2 { std::string out(buffer,bufferSize); // remove blanks: http://stackoverflow.com/questions/83439/remove-spaces-from-stdstring-in-c - out.erase(std::remove_if(out.begin(), out.end(), std::isspace), out.end()); + out.erase(std::remove_if(out.begin(), out.end(), isspace), out.end()); bool bURI = out.find("http://") != std::string::npos ; bool bNS = out.find(':') != std::string::npos && !bURI;