mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug Fix
- Fixed compiler warnings on Solaris with --enable-debug=off.
This commit is contained in:
parent
c89a0bbbd8
commit
c00e5138e0
2 changed files with 4 additions and 4 deletions
|
@ -209,7 +209,7 @@ int TDB::loadPending (std::vector <Task>& tasks, Filter& filter)
|
||||||
Timer t ("TDB::loadPending");
|
Timer t ("TDB::loadPending");
|
||||||
|
|
||||||
std::string file;
|
std::string file;
|
||||||
int line_number;
|
int line_number = 1;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
|
@ -1443,9 +1443,9 @@ std::string handleReportCalendar ()
|
||||||
|
|
||||||
Date today;
|
Date today;
|
||||||
bool getpendingdate = false;
|
bool getpendingdate = false;
|
||||||
int monthsToDisplay;
|
int monthsToDisplay = 1;
|
||||||
int mFrom;
|
int mFrom = today.month ();
|
||||||
int yFrom;
|
int yFrom = today.year ();
|
||||||
int mTo;
|
int mTo;
|
||||||
int yTo;
|
int yTo;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue