|
저의실수군요...
제가쓰던 util.h 파일에 fail이라는 이름으로 macro가 선언이 되어있었습니다...
또 fail이라는 macro가 ios.h에 정의 되어있었구요..
그래서 충돌이 났던거였습니다...
죄송합니다.....
민인학 님이 쓰신 글 :
: vector를 쓸려고...
:
: #include <vector.h> 나 #include <vector>
:
: 만 선언하면...
:
: ios.h의
:
: '' inline bool fail() const; ''를 커서로 가르키면서
: 에러를 냅니다....
:
: [C++ Error] ios.h(93): E2219 Wrong number of arguments in call of macro 'fail'
: [C++ Error] ios.h(93): E2092 Storage class 'inline' is not allowed here
: [C++ Error] ios.h(251): E2219 Wrong number of arguments in call of macro 'fail'
: [C++ Error] ios.h(262): E2219 Wrong number of arguments in call of macro 'fail'
: [C++ Error] ios.h(293): E2219 Wrong number of arguments in call of macro 'fail'
: [C++ Error] ios.h(293): E2272 Identifier expected
: [C++ Error] ios.h(293): E2040 Declaration terminated incorrectly
: [C++ Error] ostream.h(326): E2219 Wrong number of arguments in call of macro 'fail'
: [C++ Error] istream.h(267): E2219 Wrong number of arguments in call of macro 'fail'
: [C++ Error] istream.h(305): E2219 Wrong number of arguments in call of macro 'fail'
: [C++ Error] ImportFile.h(106): E2303 Type name expected
: [C++ Error] ImportFile.h(106): E2139 Declaration missing ;
:
: 위와 같이요...
: 흑흑~~~ 도와주세요... 왜그런거죠....?
:
|