diff --git a/ChangeLog b/ChangeLog index 72b8bbde..4530c77b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-04-14 Tatsuhiro Tsujikawa + + Removed unused variable 'query' + * src/Request.cc + 2009-04-14 Tatsuhiro Tsujikawa Set conditional HAVE_GETADDRINFO true for mingw32. It was diff --git a/src/Request.cc b/src/Request.cc index 8827c69e..65fe70a9 100644 --- a/src/Request.cc +++ b/src/Request.cc @@ -154,7 +154,6 @@ bool Request::redirectUrl(const std::string& url) { bool Request::parseUrl(const std::string& url) { currentUrl = url; std::string tempUrl = url; - std::string query; host = A2STR::NIL; port = 0; dir = A2STR::NIL;