From: Erik Verbruggen Date: Thu, 17 Jan 2013 21:10:35 +0000 (+0100) Subject: Fix compiler warning. X-Git-Tag: upstream/5.2.1~669^2~659^2~466 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=be00d9a5c4968317f07df2bff86c5272c83f10d9;p=platform%2Fupstream%2Fqtdeclarative.git Fix compiler warning. The usual class v.s. struct forward decls. Only fatal on Windows, not on any other platform. Change-Id: I902dd82b196663fc66e3bd914002a2961668455f Reviewed-by: Lars Knoll --- diff --git a/qv4array.h b/qv4array.h index d055923..ead2f34 100644 --- a/qv4array.h +++ b/qv4array.h @@ -361,7 +361,7 @@ inline SparseArrayNode *SparseArray::upperBound(uint akey) class Array { - friend class ArrayPrototype; + friend struct ArrayPrototype; uint len; PropertyDescriptor *lengthProperty;