Jan
1
컴파일 도중 이상한 경고가 발생했다…
#warning This file includes at least one deprecated or antiquated header.
Please consider using one of the 32 headers found in section 17.4.1.2 of the
C++ standard. Examples include substituting the <X> header for the <X.h>
header for C++ includes, or <iostream> instead of the deprecated header
<iostream.h>. To disable this warning use -Wno-deprecated.
내용인즉…
iostream.h 를 쓰고 싶다면 -Wno-deprecated 옵션과 함께 써라…하는 내용이다.
왜 그럴까…답은 표준에 있었다.
iosteram.h 는 표준헤더가 아니다.
표준헤더가 아니라서 컴파일러가 경고를 알려주는 것이다.
표준헤더 사용법은…
라고 입력하면 된다.
이렇게 입력하니 문제가 해결되었다.