You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by fa...@apache.org on 2007/06/05 20:32:00 UTC

svn commit: r544587 - /incubator/stdcxx/trunk/src/typeinfo.cpp

Author: faridz
Date: Tue Jun  5 11:31:59 2007
New Revision: 544587

URL: http://svn.apache.org/viewvc?view=rev&rev=544587
Log:
2007-06-05 Farid Zaripov <Fa...@epam.com>

	STDCXX-188
	* typeinfo.cpp: silenced warning: _C_name was declared
	but never referenced

Modified:
    incubator/stdcxx/trunk/src/typeinfo.cpp

Modified: incubator/stdcxx/trunk/src/typeinfo.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/src/typeinfo.cpp?view=diff&rev=544587&r1=544586&r2=544587
==============================================================================
--- incubator/stdcxx/trunk/src/typeinfo.cpp (original)
+++ incubator/stdcxx/trunk/src/typeinfo.cpp Tue Jun  5 11:31:59 2007
@@ -92,6 +92,9 @@
 
 const char* type_info::name () const
 {
+    // silence warning: _C_name declared but never used
+    _RWSTD_UNUSED (::_C_name);
+
     return _C_name;
 }