X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d5939a20fd8f506225296ebe7de0180c7adb088e..3dc0174140ffc52a08fd5b64cf839babad09e5cf:/utils/HelpGen/src/ifcontext.cpp diff --git a/utils/HelpGen/src/ifcontext.cpp b/utils/HelpGen/src/ifcontext.cpp index 295aab86dc..79f9c72a44 100644 --- a/utils/HelpGen/src/ifcontext.cpp +++ b/utils/HelpGen/src/ifcontext.cpp @@ -35,11 +35,12 @@ size_t spInterFileContext::GetFileNo( const string& fname ) { - for( size_t i = 0; i != mFiles.size(); ++i ) - - if ( fname == mFiles[i] ) return i; + size_t i; + for ( i = 0; i != mFiles.size(); ++i ) + if ( fname == mFiles[i] ) + return i; - wxASSERT(0); // DBG:: + wxFAIL_MSG("File not found in array in function spInterFileContext::GetFileNo()"); return 0; } @@ -119,8 +120,8 @@ void spInterFileContext::DoAppendSourceFragment( string& source, if ( cur >= pos + len ) // check if we've overstepped the current source-fragment { - wxASSERT(0); // DBG:: with current imp. this should not happen - +// wxASSERT(0); // DBG:: with current imp. this should not happen + wxFAIL_MSG("Overstepped the current source fragment in function\nspInterFileContext::DoAppendSourceFragment()"); cur = pos + len; break; } }