본문 바로가기

error3

[기타] Visual C++6.0 마이그레이션 오류 처리 1. 개요 예전에 Visual C++6.0에서 만든 MFC 프로젝트를 Visual Studio 2015로 마이그레이션 작업을 진행한 적이 있습니다. 해당 마이그레이션 과정에서 발생했던 오류와 이를 해결한 내용을 정리합니다. 2. 오류 및 처리 내용 2.1. error LNK2026: 모듈이 SAFESEH 이미지에 대해 안전하지 않습니다. 프로젝트 - 구성 속성 - 링커 - 고급 탭으로 이동한 뒤, '이미지에 안전한 예외 처리기 포함' 항목을 아니요(/SAFESEH:NO}로 변경 2.2. winnt.h(2487,1): error C2118: 첨자가 음수입니다. 프로젝트 - 구성 속성 - C/C++ - 전처리기 탭으로 이동한 뒤, 전처리기 정의에 "WINDOWS_IGNORE_PACKING_MISMATCH" .. 2024. 3. 6.
[git]error: failed to push some refs to git error: failed to push some refs to... 이번에 git 저장소를 새로 만들어서 remote 저장소와 local 저장소를 연결하려는데 연결한 다음 git push --set-upstream origin master 명령어를 치면 다음과 같은 error가 발생하더라... 도대체 무슨 이유로 error가 발생하는지 몰라서 고생고생 하면서 검색해 본 결과... github에서 remote 저장소를 만들면서 default로 생성한 README.rd 파일 때문이더라... 그러니깐 github에서 README파일을 생성하면서 remote 저장소를 만들면 자동으로 commit이 되는데 이 commit 내용이 remote에는 있지만 local에는 없기 때문에 둘을 연결할 수 없다는 것이.. 2018. 1. 8.
[git]Your branch is up-to-date with 'origin/master'. Changes not staged for commit: git Your branch is up-to-date with 'origin/master'. Changes not staged for commit: 알고리즘 문제를 풀고 그것을 git을 통해서 저장하고 있는데, 이번에 commit을 하다가 문제가 발생했다... 내용인 즉, git commit -m"mod" On branch master Your branch is up-to-date with 'origin/master'. Changes not staged for commit: modified: BinomialCoefficient/.vs/BinomialCoefficient/v14/.suo modified: BinomialCoefficient/BinomialCoefficient1/Debug/Binomial.3.. 2018. 1. 3.