From f0c334670dfef7c1b1d1ae610cf19ae9ad2822ca Mon Sep 17 00:00:00 2001 From: Christian Date: Mon, 20 Oct 2014 13:02:06 +0200 Subject: Coding style cleanup: const and vecptr. --- AST.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'AST.cpp') diff --git a/AST.cpp b/AST.cpp index c1a3faa5..8555d8c6 100644 --- a/AST.cpp +++ b/AST.cpp @@ -394,7 +394,7 @@ ptr FunctionCall::checkTypeRequirements() FunctionType* function = dynamic_cast(expressionType.get()); BOOST_ASSERT(function != nullptr); FunctionDefinition const& fun = function->getFunction(); - vecptr const& parameters = fun.getParameters(); + std::vector> const& parameters = fun.getParameters(); if (parameters.size() != m_arguments.size()) BOOST_THROW_EXCEPTION(TypeError() << errinfo_comment("Wrong argument count for " "function call.")); -- cgit