From dcfdad0f5c19d16b56d3d2c29e696e615ed36cc0 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Tue, 26 Feb 2013 12:49:38 +0100 Subject: [PATCH] Fix build with clang It tells us quite explicitly how it wants a default constructor for VoidType :) Change-Id: I854370c869f179da7f842fbf675e05678285630d Reviewed-by: Lars Knoll --- src/v4/qv4isel_masm_p.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v4/qv4isel_masm_p.h b/src/v4/qv4isel_masm_p.h index 79b08c9..28d5dca 100644 --- a/src/v4/qv4isel_masm_p.h +++ b/src/v4/qv4isel_masm_p.h @@ -181,7 +181,7 @@ public: {} }; - struct VoidType {}; + struct VoidType { VoidType() {} }; static const VoidType Void; -- 2.7.4