[윈도 최적화 프로그램 프리웨어]C 클리너

유틸_리뷰 2013. 1. 8. 11:27

http://pcgeeks.tistory.com/1445

'유틸_리뷰' 카테고리의 다른 글

폴더 동기화 FreeFileSync  (0) 2013.01.09
스티브 잡스는 아이클라우드로 또 뒤집는다  (0) 2012.08.09
gimp  (0) 2012.07.12
:

톰캣 Version 7.0.28-dev, Oct 18 2012 한글번역 메뉴얼 링크

WAS/Tomcat 2012. 10. 31. 22:29

'WAS > Tomcat' 카테고리의 다른 글

톰캣 6 가이드 (한글)  (0) 2012.07.24
netstat 로 포트에 연결된 내용 보기  (0) 2012.03.06
:

W8004 'identifier' is assigned a value that is never used (C++)

개발도구/Borland C++ 5.5.1 2012. 10. 15. 23:08

컴파일시 무시해도 될 경고 메세지를 출력 안되도록 할려면

헤더 선언하는 곳에 

#pragma warn -aus

이렇게 추가해 주고 컴파일하면 경고 메세지는 안 나옵니다.

저는 주로 Borland C++ 5.5.1 for Win32 에서 이용합니다.


출처 : http://docwiki.embarcadero.com/RADStudio/XE3/en/W8004_'identifier'_is_assigned_a_value_that_is_never_used_(C%2B%2B)


W8004 'identifier' is assigned a value that is never used (C++)

Go Up to Compiler Errors And Warnings (C++) Index

(Command-line option to suppress warning: -w-aus)

The variable appears in an assignment, but is never used anywhere else in the function just ending.

The warning is indicated only when the compiler encounters the closing brace.

The #pragma warn -aus switch has function-level granularity. You cannot turn off this warning for individual variables within a function; it is either off or on for the whole function.

: