Hi,
Is it a problem if I have an executable and a library use different versions of another library.
Example:
If I have an executable: A.exe, and it basically wraps and depends on a static library A.lib
Both A.exe and A.lib need another library B.lib
If I have a situation like this:
The A.lib library includes B.lib version 1 (uses header files from this library) The A.exe executable includes B.lib version 2 The A.exe executable links against B.lib version 2
Under what conditions would this be problematic?
Thanks