From 7050893bc17778939b65760ab37e0303860c51ba Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Tue, 3 Feb 2015 08:48:11 -0800 Subject: [PATCH] Minor typo. --- Types.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Types.cpp b/Types.cpp index cfb852c2f..54e701c10 100644 --- a/Types.cpp +++ b/Types.cpp @@ -629,7 +629,7 @@ FunctionType::FunctionType(VariableDeclaration const& _varDecl): auto mappingType = dynamic_cast(varDeclType.get()); auto returnType = varDeclType; - while (mappingType!= nullptr) + while (mappingType != nullptr) { params.push_back(mappingType->getKeyType()); paramNames.push_back("");