From 6a4fd6b1335bad51541dc951b687f484d586da9c Mon Sep 17 00:00:00 2001 From: Scott Kostyshak Date: Wed, 5 Sep 2012 03:48:34 -0400 Subject: [PATCH] Code Cleanup - Remove an unused parameter. --- src/Task.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Task.cpp b/src/Task.cpp index 5c4ad37d1..adea3ae3b 100644 --- a/src/Task.cpp +++ b/src/Task.cpp @@ -443,7 +443,7 @@ void Task::parse (const std::string& input) throw std::string (STRING_RECORD_NOT_FF4); } - catch (std::string& e) + catch (const std::string&) { legacyParse (copy); }