From: Andreas Holzammer Date: Fri, 20 Apr 2012 08:03:25 +0000 (+0200) Subject: Fix Build X-Git-Tag: accepted/tizen/20131212.181521~340 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad966ba5dbcd07b659204de293c6c0ec96a3246e;p=platform%2Fupstream%2Fqttools.git Fix Build isspace is in std namespace. Change-Id: Idc5f09c5c60df874fac9c91bb3a3538f4bea0998 Reviewed-by: Stephen Kelly --- 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"));