Debug Assertion Failed
-
When i compiled my program i got the error "Debug Assertion Failed".I referred for that error in msdn .But i cant understand it.can you tell me how can i delete this error.
-
When i compiled my program i got the error "Debug Assertion Failed".I referred for that error in msdn .But i cant understand it.can you tell me how can i delete this error.
keerthikaaa wrote:
When i compiled my program i got the error "Debug Assertion Failed".
What line of what file?
keerthikaaa wrote:
can you tell me how can i delete this error.
Not without knowing what is causing it.
"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain
"There is no death, only a change of worlds." - Native American Proverb
-
When i compiled my program i got the error "Debug Assertion Failed".I referred for that error in msdn .But i cant understand it.can you tell me how can i delete this error.
Any time you get an assert look for the line that is asserting in your debugger. If the answer isn't immediately obvious after doing so more often then not you will find a comment describing what the problem is. If there isn't, and the assert is in code you manage, put one in. Steve