VS2010 Debug Level Mismatch?

It's not a strange behavior, compiler creates different images depending on macro defines, optimization and other flags. It's better not to distribute static libraries, because the users will have to have exactly the same compiler version, standard library version, same compiler flags or you risk incompatibilities: sometimes you get linking errors, sometimes the application will crash, sometimes it will behave incorrectly.

Library writers don't have great options to point out that mixing and matching does not work. They have to trigger linker errors, always tricky and confuzzling. What doesn't work here is that you cannot mix a library that uses the STL classes with iterator debugging enabled with code that has it disabled.

Pretty fundamental mismatch, those template class objects are not the same size. If you really want to do this then you'll have to disable the diagnostics you get from the feature.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions