From 09457194d9972fb401163018cb4f73196d58db9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 22 Mar 2009 08:23:20 +0100 Subject: [PATCH] astyle code formatting --- src/checkautovariables.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/checkautovariables.cpp b/src/checkautovariables.cpp index dc169d492..e93272de0 100644 --- a/src/checkautovariables.cpp +++ b/src/checkautovariables.cpp @@ -56,7 +56,7 @@ bool CheckAutoVariables::errorAv(const Token* left, const Token* right) { std::string vname = (*it_fp); - //The left argument is a formal parameter + //The left argument is a formal parameter if (vname == left_var) { //cout << "Beccato" << endl; @@ -72,7 +72,7 @@ bool CheckAutoVariables::errorAv(const Token* left, const Token* right) for (id_vd = vd_list.begin();id_vd != vd_list.end();++id_vd) { std::string vname = (*id_vd); - //The left argument is a variable declaration + //The left argument is a variable declaration if (vname == right_var) break; }