Programming
오늘 C++ 책에서 나온 소스코드를 컴파일하다 이상한 에러를 발견했다. 17-2.cpp:84: error: expected unqualified-id before numeric constant17-2.cpp:84: error: expected initializer before numeric constant 다음의 링크에서 해답을 찾을 수 있었다. http://bytes.com/topic/c/answers/752247-what-does-expected-unqualified-id-before-numeric-constant-mean All uppercase names are often used for preprocessor macros, which doesn’t respect namespace scopes. Therefore such names should generally be avoided for everything else. 즉 어디에선가 […]
Continue reading about error: expected unqualified-id before numeric constant
KLDP 에서 자료를 검색하던 중 GDB와 관련된 매우 유용한 글타래를 발견하고 여기에 링크를 걸어둔다. http://kldp.org/node/71806
HPUX 를 사용하게되면 필연적으로 aCC와 친해져야 하는데, 보통의 gcc, g++과는 옵션 및 사용방법이 틀려 고생하는 경우가 있다. 아래의 링크에 aCC 매뉴얼을 링크해 두었다. http://docs.hp.com/en/8/commandsyntax.htm
회사에서 우연한 기회로 접하게 된 redmine. 전부터 알고는 있었지만 한번도 사용한 적이 없었던 Subvision. Java 프로그래밍을 할때만 사용했었던 Eclipse. 이 세가지를 이용하여 C/C++ 개발환경을 꾸며보았다. 나름 열심히 고생해서 연동에 성공했지만.. 늘 그렇듯이 하고나면 아무것도 아닌 것. 🙂 그래도 과정에 있어서 재미있는 경험을 많이 했으니 그것으로 만족하련다. 🙂 그리고, 이 문서로 하여금 다른이들이 나와 같은 고생을 […]
C++ 프로그래밍을 공부하던 중, 예제 프로그램을 컴파일하다 다음과 같은 에러를 발견했다. Description Resource Path Location Type‘nocreat’ is not a member of ‘std::ios’ Config.cpp /TEMS/src line 40 C/C++ Problem 환경은 이클립스 3.5.2 버전이었으며, g++ 버전은 version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) 이었다. 문제의 원인을 찾기 위해 구글링을 해보니 답은 간단했다. […]
Recent Comments