From ad966ba5dbcd07b659204de293c6c0ec96a3246e Mon Sep 17 00:00:00 2001 From: Andreas Holzammer Date: Fri, 20 Apr 2012 10:03:25 +0200 Subject: [PATCH] Fix Build isspace is in std namespace. Change-Id: Idc5f09c5c60df874fac9c91bb3a3538f4bea0998 Reviewed-by: Stephen Kelly --- src/linguist/lupdate/qdeclarative.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linguist/lupdate/qdeclarative.cpp b/src/linguist/lupdate/qdeclarative.cpp index 62966d8..c601b78 100644 --- a/src/linguist/lupdate/qdeclarative.cpp +++ b/src/linguist/lupdate/qdeclarative.cpp @@ -364,7 +364,7 @@ void FindTrCalls::processComment(const AST::SourceLocation &loc) if (p >= length) break; c = chars[p++].unicode(); - if (isspace(c)) + if (std::isspace(c)) continue; if (c != '"') { yyMsg(loc.startLine) << qPrintable(LU::tr("Unexpected character in meta string\n")); -- 2.7.4