|
이성희 님이 쓰신 글 :
: 어제 오전까지 잘되던 프로그램이엇는데
: 갑자기 컴파일시 이런 오류가 발생하네요
: 문제 무엇인지 모르겠습니다.
: 고수님들의 조언 부탁드립니다.
: 좀 급합니다.
:
: [C++ Error] _stddef.h(36): E2141 Declaration syntax error
: [C++ Error] _stddef.h(132): E2090 Qualifier 'std' is not a class or namespace name
: [C++ Error] _stddef.h(132): E2272 Identifier expected
: [C++ Error] _stddef.h(133): E2090 Qualifier 'std' is not a class or namespace name
: [C++ Error] _stddef.h(133): E2272 Identifier expected
: [C++ Error] _stddef.h(134): E2090 Qualifier 'std' is not a class or namespace name
: [C++ Error] _stddef.h(134): E2272 Identifier expected
: [C++ Error] _stddef.h(135): E2090 Qualifier 'std' is not a class or namespace name
: [C++ Error] _stddef.h(135): E2272 Identifier expected
: [C++ Error] mem.h(39): E2188 Expression syntax
: [C++ Error] mem.h(39): E2293 ) expected
: [C++ Error] mem.h(40): E2188 Expression syntax
: [C++ Error] mem.h(40): E2293 ) expected
: [C++ Error] mem.h(41): E2188 Expression syntax
: [C++ Error] mem.h(41): E2293 ) expected
: [C++ Error] mem.h(42): E2188 Expression syntax
: [C++ Error] mem.h(42): E2293 ) expected
: [C++ Error] mem.h(49): E2316 'size_t' is not a member of 'std'
: [C++ Error] mem.h(48): E2188 Expression syntax
: [C++ Error] mem.h(49): E2293 ) expected
: [C++ Error] mem.h(51): E2316 'size_t' is not a member of 'std'
: [C++ Error] mem.h(50): E2188 Expression syntax
: [C++ Error] mem.h(51): E2293 ) expected
: [C++ Error] mem.h(53): E2316 'size_t' is not a member of 'std'
: [C++ Error] mem.h(52): E2188 Expression syntax
: [C++ Error] mem.h(52): E2228 Too many error or warning messages
잘은 모르겟는뎅
Expression syntax 이건 함수명령이 틀렷다는거같고
'size_t' is not a member of 'std' 이건 변수가 맴버가 아니라고 하는듯 하고
) expected 이건 ) 요게 빠저서 나오는듯하고
Qualifier 'std' is not a class or namespace name 이건 std 의네임스페이스가 문제가잇다는듯하는거같음
확실히는모르겟으니 패스
mem.h 부분부터는 ) 요고 붙여주면 몇갠 에러사라질듯하고
그위에 에러는 아마 헤더에문제가아니라 님본소스에 문제가있는듯함
함수를 잘못사용했거나 그런문제가있는듯함;
|