Very often we encounter this kind of issues like below:
1>Compiling...
1>a.cpp
1>c:\apps\b.h(22) : fatal error C1083: Cannot open include file: 'boost/shared_ptr.hpp': No such file or directory
Sometimes it could be tedious as there a many include files and even nested include files in a big project.
What is the best way to trace / which include file is the culprit(parent) that include the problematic include file?
The problem is it has nested include, so will need to spend some effort before able to tell which file actually include b.h.