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 <[EMAIL PROTECTED]>

        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;
 }
 


Reply via email to