From be00d9a5c4968317f07df2bff86c5272c83f10d9 Mon Sep 17 00:00:00 2001 From: Erik Verbruggen Date: Thu, 17 Jan 2013 22:10:35 +0100 Subject: [PATCH] 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 --- qv4array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.7.4