Remove unnecessary comparison of unsigned variable with 0.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 28 Feb 2010 11:08:34 +0000 (11:08 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 28 Feb 2010 11:08:34 +0000 (11:08 +0000)
commitccc3a25d878ae0797c2f689f5ef6a8b727786f83
tree2adad6ac40c6cb95c454100af0b3ae3b625d4c70
parente4d0689515f282838013f74525ac5d37c53fa518
Remove unnecessary comparison of unsigned variable with 0.

m_httpsize is of type size_t and so is always >= 0, no need to check for it.
And removing the check avoids a warning from at least IRIX mipsPro (and
probably others).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63573 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
src/common/http.cpp