CODEDRAGON ㆍDevelopment/C, C++
Error-PCH warning: cannot find a suitable header stop location. An IntelliSense PCH file was not generated
에러 메시지
Severity Code Description Project File Line Error (active) PCH warning: cannot find a suitable header stop location. An IntelliSense PCH file was not generated. ch-basic c:\CodeLab\git\study_cpp\ch-basic\ch-basic\Ex07.cpp 34 |
해결 방법 1
main() 중복 확인
해결 방법 2
Visual Studio의 "Solution Explorer"에서 프로젝트 선택 후 마우스 우클릭 >> [Properties]
[Configuration Properties] >> [C/C++] >> [Precompiled Headers]
"Precomplied Header"항목을 [Not Using Precompiled Headers]로 선택 >>
[적용] >> [확인]
해결 방법 - 3차
#include "header.h" 구문 추가
'Development > C, C++' 카테고리의 다른 글
Ex55-배열포인터를 사용하지 않고 1차원 포인터 변수에 2차원 배열의 주소를 저장 (0) | 2016.06.22 |
---|---|
Ex54-2차원 배열의 주소를 저장하는 배열 포인터 변수 p 사용하기 (0) | 2016.06.20 |
ERROR-_main already defined in xxxxxxx.obj (0) | 2016.06.15 |
Ex53-1차원 배열 주소를 저장하는 포인터 변수를 이용하여 1차원 배열 요소들의 값에 접근하기 (0) | 2016.06.14 |
Ex52-주소에 의한 호출(Call By Reference) (0) | 2016.06.05 |