10 lines
258 B
C
10 lines
258 B
C
|
/*! \file pch.h
|
||
|
\brief This header is deprecated, please ignore.
|
||
|
*/
|
||
|
|
||
|
#ifdef _MSC_VER
|
||
|
#pragma message("pch.h is deprecated and there is no need to include it anymore")
|
||
|
#else
|
||
|
#warning "pch.h is deprecated and there is no need to include it anymore"
|
||
|
#endif
|