diff --git a/src/Context.cpp b/src/Context.cpp index 81ee76b8c..1b7ba1072 100644 --- a/src/Context.cpp +++ b/src/Context.cpp @@ -30,6 +30,7 @@ #include #include #include +#include #include "Context.h" #include "Timer.h" #include "text.h" diff --git a/src/Date.cpp b/src/Date.cpp index 1d7692ced..55abd8421 100644 --- a/src/Date.cpp +++ b/src/Date.cpp @@ -29,6 +29,7 @@ #include #include #include +#include #include "Date.h" #include "text.h" #include "util.h" @@ -82,14 +83,14 @@ Date::Date (const std::string& mdy, const std::string& format /* = "m/d/Y" */) // Single or double digit. case 'm': if (i >= mdy.length () || - ! ::isdigit (mdy[i])) + ! isdigit (mdy[i])) { throw std::string ("\"") + mdy + "\" is not a valid date."; } if (i + 1 < mdy.length () && (mdy[i + 0] == '0' || mdy[i + 0] == '1') && - ::isdigit (mdy[i + 1])) + isdigit (mdy[i + 1])) { month = ::atoi (mdy.substr (i, 2).c_str ()); i += 2; @@ -103,14 +104,14 @@ Date::Date (const std::string& mdy, const std::string& format /* = "m/d/Y" */) case 'd': if (i >= mdy.length () || - ! ::isdigit (mdy[i])) + ! isdigit (mdy[i])) { throw std::string ("\"") + mdy + "\" is not a valid date."; } if (i + 1 < mdy.length () && (mdy[i + 0] == '0' || mdy[i + 0] == '1' || mdy[i + 0] == '2' || mdy[i + 0] == '3') && - ::isdigit (mdy[i + 1])) + isdigit (mdy[i + 1])) { day = ::atoi (mdy.substr (i, 2).c_str ()); i += 2; @@ -125,8 +126,8 @@ Date::Date (const std::string& mdy, const std::string& format /* = "m/d/Y" */) // Double digit. case 'y': if (i + 1 >= mdy.length () || - ! ::isdigit (mdy[i + 0]) || - ! ::isdigit (mdy[i + 1])) + ! isdigit (mdy[i + 0]) || + ! isdigit (mdy[i + 1])) { throw std::string ("\"") + mdy + "\" is not a valid date."; } @@ -137,8 +138,8 @@ Date::Date (const std::string& mdy, const std::string& format /* = "m/d/Y" */) case 'M': if (i + 1 >= mdy.length () || - ! ::isdigit (mdy[i + 0]) || - ! ::isdigit (mdy[i + 1])) + ! isdigit (mdy[i + 0]) || + ! isdigit (mdy[i + 1])) { throw std::string ("\"") + mdy + "\" is not a valid date."; } @@ -149,8 +150,8 @@ Date::Date (const std::string& mdy, const std::string& format /* = "m/d/Y" */) case 'D': if (i + 1 >= mdy.length () || - ! ::isdigit (mdy[i + 0]) || - ! ::isdigit (mdy[i + 1])) + ! isdigit (mdy[i + 0]) || + ! isdigit (mdy[i + 1])) { throw std::string ("\"") + mdy + "\" is not a valid date."; } @@ -162,10 +163,10 @@ Date::Date (const std::string& mdy, const std::string& format /* = "m/d/Y" */) // Quadruple digit. case 'Y': if (i + 3 >= mdy.length () || - ! ::isdigit (mdy[i + 0]) || - ! ::isdigit (mdy[i + 1]) || - ! ::isdigit (mdy[i + 2]) || - ! ::isdigit (mdy[i + 3])) + ! isdigit (mdy[i + 0]) || + ! isdigit (mdy[i + 1]) || + ! isdigit (mdy[i + 2]) || + ! isdigit (mdy[i + 3])) { throw std::string ("\"") + mdy + "\" is not a valid date."; } diff --git a/src/Nibbler.cpp b/src/Nibbler.cpp index 8941fb3c7..dce165412 100644 --- a/src/Nibbler.cpp +++ b/src/Nibbler.cpp @@ -243,7 +243,7 @@ bool Nibbler::getInt (int& result) ++i; } - while (i < mInput.length () && ::isdigit (mInput[i])) + while (i < mInput.length () && isdigit (mInput[i])) ++i; if (i > mCursor) @@ -260,7 +260,7 @@ bool Nibbler::getInt (int& result) bool Nibbler::getUnsignedInt (int& result) { std::string::size_type i = mCursor; - while (i < mInput.length () && ::isdigit (mInput[i])) + while (i < mInput.length () && isdigit (mInput[i])) ++i; if (i > mCursor) diff --git a/src/Sequence.cpp b/src/Sequence.cpp index 44fc3f2ce..85702398b 100644 --- a/src/Sequence.cpp +++ b/src/Sequence.cpp @@ -153,7 +153,7 @@ bool Sequence::validId (const std::string& input) const return false; for (size_t i = 0; i < input.length (); ++i) - if (!::isdigit (input[i])) + if (!isdigit (input[i])) return false; return true; diff --git a/src/Table.cpp b/src/Table.cpp index 9a9058150..59cdd782a 100644 --- a/src/Table.cpp +++ b/src/Table.cpp @@ -876,7 +876,7 @@ void Table::sort (std::vector & order) if (gap > 1) { gap = (int) ((float)gap / 1.3); - if (gap == 10 or gap == 9) + if (gap == 10 || gap == 9) gap = 11; } diff --git a/src/Timer.cpp b/src/Timer.cpp index 5d25dd4f4..cc9a76abe 100644 --- a/src/Timer.cpp +++ b/src/Timer.cpp @@ -52,7 +52,7 @@ Timer::~Timer () << mDescription << " " << std::setprecision (6) - << std::fixed +// << std::fixed << ((end.tv_sec - mStart.tv_sec) + ((end.tv_usec - mStart.tv_usec ) / 1000000.0)) << " sec"; diff --git a/src/import.cpp b/src/import.cpp index 939e04710..2ad65c948 100644 --- a/src/import.cpp +++ b/src/import.cpp @@ -106,16 +106,16 @@ static fileType determineFileType (const std::vector & lines) { if ( lines[i][0] == 'x' && lines[i][1] == ' ' && - ::isdigit (lines[i][2]) && - ::isdigit (lines[i][3]) && - ::isdigit (lines[i][4]) && - ::isdigit (lines[i][5]) && + isdigit (lines[i][2]) && + isdigit (lines[i][3]) && + isdigit (lines[i][4]) && + isdigit (lines[i][5]) && lines[i][6] == '-' && - ::isdigit (lines[i][7]) && - ::isdigit (lines[i][8]) && + isdigit (lines[i][7]) && + isdigit (lines[i][8]) && lines[i][9] == '-' && - ::isdigit (lines[i][10]) && - ::isdigit (lines[i][11])) + isdigit (lines[i][10]) && + isdigit (lines[i][11])) return todo_sh_2_0; } @@ -126,13 +126,13 @@ static fileType determineFileType (const std::vector & lines) // +project if (words[w].length () > 1 && words[w][0] == '+' && - ::isalnum (words[w][1])) + isalnum (words[w][1])) return todo_sh_2_0; // @context if (words[w].length () > 1 && words[w][0] == '@' && - ::isalnum (words[w][1])) + isalnum (words[w][1])) return todo_sh_2_0; } } diff --git a/src/report.cpp b/src/report.cpp index 45f6558bf..ccb90b195 100644 --- a/src/report.cpp +++ b/src/report.cpp @@ -1400,9 +1400,9 @@ std::string renderMonths ( row = 0; // Loop through days in month and add to table. - for (int d = 1; d <= daysInMonth.at (mpl); ++d) + for (int d = 1; d <= daysInMonth[mpl]; ++d) { - Date temp (months.at (mpl), d, years.at (mpl)); + Date temp (months[mpl], d, years[mpl]); int dow = temp.dayOfWeek (); int woy = temp.weekOfYear (weekStart); @@ -1420,9 +1420,9 @@ std::string renderMonths ( table.addCell (row, thisCol, d); if ((context.config.get ("color", true) || context.config.get (std::string ("_forcecolor"), false)) && - today.day () == d && - today.month () == months.at (mpl) && - today.year () == years.at (mpl)) + today.day () == d && + today.month () == months[mpl] && + today.year () == years[mpl]) table.setCellFg (row, thisCol, Text::cyan); foreach (task, all) @@ -1434,8 +1434,8 @@ std::string renderMonths ( if ((context.config.get ("color", true) || context.config.get (std::string ("_forcecolor"), false)) && due.day () == d && - due.month () == months.at (mpl) && - due.year () == years.at (mpl)) + due.month () == months[mpl] && + due.year () == years[mpl]) { table.setCellFg (row, thisCol, Text::black); table.setCellBg (row, thisCol, due < today ? Text::on_red : Text::on_yellow); @@ -1447,7 +1447,7 @@ std::string renderMonths ( int eow = 6; if (weekStart == 1) eow = 0; - if (dow == eow && d < daysInMonth.at (mpl)) + if (dow == eow && d < daysInMonth[mpl]) row++; } } diff --git a/src/text.cpp b/src/text.cpp index 0e511b551..d980b7c34 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -209,7 +209,7 @@ std::string commify (const std::string& data) int i; for (int i = 0; i < (int) data.length (); ++i) { - if (::isdigit (data[i])) + if (isdigit (data[i])) end = i; if (data[i] == '.') @@ -227,11 +227,11 @@ std::string commify (const std::string& data) int consecutiveDigits = 0; for (; i >= 0; --i) { - if (::isdigit (data[i])) + if (isdigit (data[i])) { result += data[i]; - if (++consecutiveDigits == 3 && i && ::isdigit (data[i - 1])) + if (++consecutiveDigits == 3 && i && isdigit (data[i - 1])) { result += ','; consecutiveDigits = 0; @@ -251,11 +251,11 @@ std::string commify (const std::string& data) int consecutiveDigits = 0; for (; i >= 0; --i) { - if (::isdigit (data[i])) + if (isdigit (data[i])) { result += data[i]; - if (++consecutiveDigits == 3 && i && ::isdigit (data[i - 1])) + if (++consecutiveDigits == 3 && i && isdigit (data[i - 1])) { result += ','; consecutiveDigits = 0; @@ -279,8 +279,8 @@ std::string lowerCase (const std::string& input) { std::string output = input; for (int i = 0; i < (int) input.length (); ++i) - if (::isupper (input[i])) - output[i] = ::tolower (input[i]); + if (isupper (input[i])) + output[i] = tolower (input[i]); return output; } @@ -290,8 +290,8 @@ std::string upperCase (const std::string& input) { std::string output = input; for (int i = 0; i < (int) input.length (); ++i) - if (::islower (input[i])) - output[i] = ::toupper (input[i]); + if (islower (input[i])) + output[i] = toupper (input[i]); return output; } @@ -302,7 +302,7 @@ std::string ucFirst (const std::string& input) std::string output = input; if (output.length () > 0) - output[0] = ::toupper (output[0]); + output[0] = toupper (output[0]); return output; } @@ -352,7 +352,7 @@ void guess ( bool digitsOnly (const std::string& input) { for (size_t i = 0; i < input.length (); ++i) - if (!::isdigit (input[i])) + if (!isdigit (input[i])) return false; return true; @@ -362,7 +362,7 @@ bool digitsOnly (const std::string& input) bool noSpaces (const std::string& input) { for (size_t i = 0; i < input.length (); ++i) - if (::isspace (input[i])) + if (isspace (input[i])) return false; return true;