From b918da3c49695ba854ee17005fbcdb2ca3881ea4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Thu, 1 Jun 2017 00:19:09 +0200 Subject: [PATCH] Minor formatting. --- include/anthem/Body.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/anthem/Body.h b/include/anthem/Body.h index 463b85c..62e96a5 100644 --- a/include/anthem/Body.h +++ b/include/anthem/Body.h @@ -59,7 +59,7 @@ struct BodyTermTranslateVisitor } // Create new body variable declarations - std::vector> parameters; + ast::VariableDeclarationPointers parameters; parameters.reserve(function.arguments.size()); for (size_t i = 0; i < function.arguments.size(); i++) @@ -125,7 +125,7 @@ struct BodyLiteralTranslateVisitor const auto operator_ = translate(comparison.comparison); - std::vector> parameters; + ast::VariableDeclarationPointers parameters; parameters.reserve(2); parameters.emplace_back(std::make_unique(ast::VariableDeclaration::Type::Body)); parameters.emplace_back(std::make_unique(ast::VariableDeclaration::Type::Body));