I am getting a boost Linker error in Visual Studio (2012) for a library which I am not using. I am trying to establish whether VS2012 thinks my code is using the particular library, or whether its complaining about all my boost linking paths and this just happens to be the first file it fails to link to.
Is there any way I can "ask" Visual Studio why it is trying to link to a certain library?
1>LINK : fatal error LNK1104: cannot open file
'libboost_date_time-iw-mt-gd-1_54.lib'
I am not using any boost date/time classes- but I wonder if forgetting to include "std::" at beginning makes compiler think I am using a similarly-named std.