- Enabled compiler warnings, which were off.  Yikes.
- Fixed all compiler warnings on OSX.
This commit is contained in:
Paul Beckingham
2011-05-28 23:59:43 -04:00
parent 36e24fa1fb
commit 0260aff441
40 changed files with 121 additions and 82 deletions

View File

@@ -280,7 +280,7 @@ void handleUndo ()
}
////////////////////////////////////////////////////////////////////////////////
void handleMerge (std::string& outs)
void handleMerge (std::string&)
{
std::string file = trim (context.task.get ("description"));
std::string pushfile = "";
@@ -337,7 +337,7 @@ void handleMerge (std::string& outs)
////////////////////////////////////////////////////////////////////////////////
// Transfers the local data (from rc.location.data) to the remote path. Because
// this is potentially on another machine, no checking can be performed.
void handlePush (std::string& outs)
void handlePush (std::string&)
{
std::string file = trim (context.task.get ("description"));
@@ -387,7 +387,7 @@ void handlePush (std::string& outs)
}
////////////////////////////////////////////////////////////////////////////////
void handlePull (std::string& outs)
void handlePull (std::string&)
{
std::string file = trim (context.task.get ("description"));