Why is he claiming? assert (false) looks like "it should never be", the code was executed in CRT. I would be scared if I were you. Is it always on the same line? Are there any comments around him?
EDIT: I mean: assert occurs in CRT code because there is an assumption that it checks that you are not dating (you may have managed to associate with a mixed runtime or you created a managed assembly in C ++ and forgot to manually initialize CRT, or you are trying to call LoadLibrary from DllMain or some other thing that should never happen).
So, before you figure out how to suppress claims, find out why this is the first thing to say. Otherwise, you will most likely run into unresolved issues later and will be very funny trying to debug them. (from your question it is not clear if you know what statements are)
Code like this
if(somebadcondition) { assert(false);
literally means "this code branch should never be executed."
source share