How to force Visual Studio preprocessor case sensitivity with #includes?
Posted
by Nick McCowin
on Stack Overflow
See other posts from Stack Overflow
or by Nick McCowin
Published on 2009-07-14T00:05:15Z
Indexed on
2010/05/08
23:58 UTC
Read the original article
Hit count: 141
If you have a header file named ThisIsAHeaderFile.h, the following will still locate the file in Visual Studio:
#include <ThisIsAheaderFile.h>
Is there a way to enforce case sensitivity so that the #include will result in an error?
© Stack Overflow or respective owner