if there is a header file after including which you start getting warnings , and especially if that header file is a third party header file , its better to wrap the header file with your own custom wrapper .
#pragma warning(push)
#pragma warning(disable:line_number_causing_warning)
#include
#pragma warning(pop)
No comments:
Post a Comment