From d70190b0da68a03000dba255ede92304db7ed49c Mon Sep 17 00:00:00 2001 From: Marek Kotewicz Date: Thu, 11 Dec 2014 14:12:49 +0100 Subject: [PATCH] removed explicit --- libsolidity/Types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsolidity/Types.h b/libsolidity/Types.h index 718f347f8..dd89f311d 100644 --- a/libsolidity/Types.h +++ b/libsolidity/Types.h @@ -184,7 +184,7 @@ private: class BoolType: public Type { public: - explicit BoolType() {} + BoolType() {} virtual Category getCategory() const { return Category::BOOL; } virtual bool isExplicitlyConvertibleTo(Type const& _convertTo) const override; virtual bool acceptsBinaryOperator(Token::Value _operator) const override