13300
2016-02-24 14:18:53
0
문서를 찾아보니 msdn에서도 인로즈 님의 언급하신 방법으로 존재하지 #warning은 없는 것 같습니다.
아무튼.. gcc 계열이라면 #ifdef나 #if DEBUG == true 식으로 조건 검사후 #warning 하시면 되고
비쥬얼 스튜디오 계열이라면 #pragma message로 하시면 될 것 같습니다.
+
#pragma message string
Prints string as a compiler message on compilation. The message is informational only, and is neither a compilation warning nor an error.
#pragma message "Compiling " __FILE__ "..."
https://gcc.gnu.org/onlinedocs/gcc/Diagnostic-Pragmas.html
gcc에서도 #pragma message가 된다네요 -ㅁ-?