C++ 디버그(Debugging)시 STL Code Into Step 방지



비주얼 스튜디오 버전에 맞는 폴더(본문은 Visual Studio 2013)


C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Packages\Debugger\Visualizers


default.natstepfilter 필터에 아래 코드를 복사 해서 저장.

Notepad, EditPlus 등등 ( 관리자 모드 실행 )


<?xml version="1.0" encoding="utf-8"?>

<StepFilter xmlns="http://schemas.microsoft.com/vstudio/debugger/natstepfilter/2010">


<Function><Name>std::.*</Name><Action>NoStepInto</Action></Function>


  <Function><Name>__security_check_cookie</Name><Action>NoStepInto</Action></Function>  

  <Function><Name>operator new</Name><Action>NoStepInto</Action></Function>

</StepFilter>





Posted by seanpaul
,
Windows 8.1 폰트 초기화 

1. 윈도우 탐색기를 실행 해서 C:\Windows\Fonts 폴더로 이동

    Fonts 폴더가 보이지 않는다면 탐색기의 메뉴 - 보기 - 옵션을 클릭 

    - 폴더 및 검색 옵션 변경 선택 - 2번째 탭의 보기 선택 

    - 숨김 파일 및 폴더의 숨김 파일, 폴더 및 드라이브 표시



폰트폴더에서 왼쪽 상단에 - 글꼴 설정 클릭

기본 글꼴 설정 복원(R)을 클릭 해서 설치 원상태로 되돌리기



2. 이렇게 해도 원래되로 되지 않는다면

   

아래 파일을 다운 받아서 C:\Windows\Fonts 폴더에 덮어 쓰기 


'기타 팁' 카테고리의 다른 글

구글 검색 팁  (0) 2015.02.15
Posted by seanpaul
,


MicroSoft Visual Studio 사용 할 때 좋은 확장 도구(Add-in)



1. MicroSoft Productivity Power Tools



2. CodeMaid ( http://www.codemaid.net/ )


설치 후에 Cleaning - Progressing - 체크를 모두 해제.



3. Visual Assist (  https://goo.gl/9Zf4bS )


4. 더 많은 확장 도구들

https://visualstudiogallery.msdn.microsoft.com/



Posted by seanpaul
,