Troubleshooting2011. 3. 15. 15:41


VS2010 SP1이 나와서 깔았더니 왠 -_-;;;
아래 링크의 내용을 참조하자~

Tim Odell's Blog
Mike Kaufman's reply


Odell의 블로그 내용은 너무 말이 많다ㅋ
Mike가 시키는 데로 하면된다.

... 하지만 왜 언인스톨을 해야하지 -_-;;;
MS 밉다 -_ㅜ
Posted by codevania
Tip2011. 1. 12. 12:29


자세한 건...
http://www.justsoftwaresolutions.co.uk/cplusplus/rvalue_references_and_perfect_forwarding.html

링크 내용중 일부

X x;
X& lref = x;
          // bind lvalue reference to object: fine
X&& rref = x;       // bind rvalue reference to object: fine too.
X&& rref2 = lref;  // bind rvalue reference to lvalue ref: fine
X& lref2 = X();     // bind lvalue reference to temporary (rvalue): error
X&& rref3 = X();  // bind rvalue reference to temporary (rvalue): fine, extends lifetime of temporary

'Tip' 카테고리의 다른 글

SEH  (0) 2011.03.31
Set a Thread Name in Native Code  (0) 2010.12.03
Remote Debugging  (0) 2010.11.23
IsNaN  (0) 2010.11.02
Failed to create .NET Frameworks PropertyGrid component  (0) 2010.08.20
Posted by codevania
Troubleshooting2011. 1. 11. 12:26
비쥬얼 스튜디오 실행시, IDE는 뜨지도 않고 에러 다이얼로그 박스만 뜨는 경우가 생겼다.
아래와 같은 메세지의 에러 다이얼로그 박스가 뜨는데...

[ KOR ]
- devenv.exe - 시작 지점 없음
- 프로시저 시작 지점 wmemcpy_s을(를) DLL MSVCR100.dll에서 찾을 수 없습니다.

[ ENG ]
- devenv.exe - No entry point
- The procedure entry point Wmemcpy_s could not be located in msvcr100.dll

발생 원인은 다음과 같은 것들이 있었다.
- DVD설치가 아닌 '제어판/프로그램/프로그램 가져오기'에서 설치 -> (Install SP1) -> execute 'devenv'
- Install Ultimate -> Uninstall Ultimate -> Install Premium(or Professional) -> (Install SP1) -> execute 'devenv'

해결방법은...
- 괜히 다른 것들 삭제할 필요없다. 프로그램 제거에서 'VS 2010'만 삭제 후 -> 리붓 -> VS 2010 재설치
- 재설치 해도 안 될 때, C:/windows/system32/MSVCR100.dll을 $(VSInstallDir)/Common7/IDE에 복사

'Troubleshooting' 카테고리의 다른 글

map/set iterators incompatible  (0) 2011.08.03
Resolving BootstrapPackage Load Error: Visual Studio 2010  (0) 2011.03.15
Conversion from VS2005 to VS2010  (0) 2010.12.14
Break when an exception is  (0) 2010.12.03
마일스 사운드 버그  (3) 2010.11.17
Posted by codevania