From: Vadim Zeitlin Date: Sun, 28 Feb 2010 11:08:30 +0000 (+0000) Subject: Remove unused static constant. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e4d0689515f282838013f74525ac5d37c53fa518 Remove unused static constant. HOURS_PER_DAY was used only in the part of the code which was moved to src/common/datetimefmt.cpp and some compilers (e.g. IRIX mipsPro) now warn about an unused static constant in datetime.cpp, so just remove it from there. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63572 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/datetime.cpp b/src/common/datetime.cpp index 3f036e61da..e9f1935bb3 100644 --- a/src/common/datetime.cpp +++ b/src/common/datetime.cpp @@ -281,8 +281,6 @@ static const int SEC_PER_MIN = 60; static const int MIN_PER_HOUR = 60; -static const int HOURS_PER_DAY = 24; - static const long SECONDS_PER_DAY = 86400l; static const int DAYS_PER_WEEK = 7;