From e12a3d6de374596635b7013d6b919b5511fa9437 Mon Sep 17 00:00:00 2001 From: Vincent Gariepy Date: Sun, 30 Mar 2014 19:27:45 -0400 Subject: [PATCH] prefix arguments with underscores --- eth/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eth/main.cpp b/eth/main.cpp index 9db48ef9d..d756f0353 100644 --- a/eth/main.cpp +++ b/eth/main.cpp @@ -93,7 +93,7 @@ void interactiveHelp() << " exit Exits the application." << endl; } -string credits(bool interactive = false) +string credits(bool _interactive = false) { std::ostringstream ccout; ccout @@ -101,7 +101,7 @@ string credits(bool interactive = false) << " Code by Gav Wood, (c) 2013, 2014." << endl << " Based on a design by Vitalik Buterin." << endl << endl; - if (interactive) + if (_interactive) { string vs = toString(ETH_QUOTED(ETH_VERSION)); vs = vs.substr(vs.find_first_of('.') + 1)[0];