336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

#pragma warning(disable: 4018)  // signed/unsigned mismatch
#pragma warning(disable: 4100)  // unreferenced formal parameter
#pragma warning(disable: 4146)  // unary minus operator applied to unsigned type, result still unsigned
#pragma warning(disable: 4244)  // 'conversion' conversion from 'type1' to 'type2', possible loss of data
#pragma warning(disable: 4245)  // conversion from 'type1' to 'type2', signed/unsigned mismatch
#pragma warning(disable: 4511)  // 'class' : copy constructor could not be generated
#pragma warning(disable: 4512)  // 'class' : assignment operator could not be generated
#pragma warning(disable: 4663)  // C++ language change: to explicitly specialize class template 'vector'
#pragma warning(disable: 4710)  // 'function' : function not inlined
#pragma warning(disable: 4786)  // identifier was truncated to 'number' characters in the debug information

 

STL의 vector<vector<POINT> > 을 쓰면서 한가지 주의해야 할 사항은

>> 부분을 겹쳐쓰면 안된다는 것이다 컴파일러는 이것을 비트연산자로 처리하기 때문이다.

그래서 꼭 띄어쓰기를 해야한다.


출처 : http://www.codeproject.com/vcpp/stl/stl_without_warnings.asp

'Programming > C / C++' 카테고리의 다른 글

switch 분할 호출  (0) 2015.02.07
가변 인수  (0) 2015.02.07
구조체 초기화  (0) 2015.02.07
자료형의 종류와 범위  (0) 2015.02.07
__IN & __OUT  (0) 2015.02.07
Posted by 역시인생한방
,