Take out wxASSERTs since they give a warning with gcc.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36271 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2005-11-27 18:12:37 +00:00
parent 24c96d96bc
commit 9630cac5fc

View File

@@ -90,16 +90,14 @@ public:
// we just use casts here because the fields of regmatch_t struct may be 64 // we just use casts here because the fields of regmatch_t struct may be 64
// bit but we're limited to size_t in our public API and are not going to // bit but we're limited to size_t in our public API and are not going to
// change it because operating on strings longer than 4GB using it is // change it because operating on strings longer than 4GB using it is
// absolutely impractical anyhow, but still check at least in debug // absolutely impractical anyhow
size_t Start(size_t n) const size_t Start(size_t n) const
{ {
wxASSERT_MSG( m_matches[n].rm_so < UINT_MAX, _T("regex offset overflow") );
return wx_truncate_cast(size_t, m_matches[n].rm_so); return wx_truncate_cast(size_t, m_matches[n].rm_so);
} }
size_t End(size_t n) const size_t End(size_t n) const
{ {
wxASSERT_MSG( m_matches[n].rm_eo < UINT_MAX, _T("regex offset overflow") );
return wx_truncate_cast(size_t, m_matches[n].rm_eo); return wx_truncate_cast(size_t, m_matches[n].rm_eo);
} }