티스토리 뷰

In Visual C++ 6.0
원인
소스상에서는 try catch 를 사용하나 try catch 를 지원하지 않게 컴파일 하려고 하기 때문이다.

조치
Project Setting 에 C/C++탭에서 카테고리 C++ Language를 선택한 후
Enable exception handling을 체크한다. 혹은, Project Option에서 /GX를 추가 하면 된다.

Cause
You use try/catch but complier doesn't support try/catch.

Solution
You should use /GX option or Enable exception handling in Visual Studio's Project Settings

댓글