From 172bd9d3faf4b6e7655a505a143cd3834ae00d76 Mon Sep 17 00:00:00 2001 From: Sam Fredrickson Date: Fri, 5 Dec 2008 00:20:31 -0800 Subject: [PATCH] Removed use of "cout". Even though this is the console port, it's better to be consistent. --- src/console/Arguments.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/console/Arguments.cpp b/src/console/Arguments.cpp index 6026ecf..f56233e 100644 --- a/src/console/Arguments.cpp +++ b/src/console/Arguments.cpp @@ -37,7 +37,7 @@ static void argumentEvaluate(vector& args) Calculator calculator; calculator.Eval(args[0]); calculator.Display(); - cout << endl; + Print('\n'); } static void argumentVersion(vector& args) -- 2.11.4.GIT