emailservices/emailstore/message_store/debuglog/src/DebugLog.cpp
changeset 76 38bf5461e270
parent 74 6c59112cfd31
equal deleted inserted replaced
74:6c59112cfd31 76:38bf5461e270
   400 // ==========================================================================
   400 // ==========================================================================
   401 EXPORT_C void RDebugLog::WriteFormat( const TDesC8& aFuncName8, 
   401 EXPORT_C void RDebugLog::WriteFormat( const TDesC8& aFuncName8, 
   402                                       TRefByValue< const TDesC16 > aFmt, 
   402                                       TRefByValue< const TDesC16 > aFmt, 
   403                                       ... ) const
   403                                       ... ) const
   404     {
   404     {
   405     // coverity[UNINIT]
   405     //coverity[var_decl]
   406 	VA_LIST list; 
   406 	VA_LIST list; 
   407 	VA_START(list,aFmt);
   407 	VA_START(list,aFmt);
   408 
   408 
   409 	RDebugLog* self = const_cast<RDebugLog*>(this);
   409 	RDebugLog* self = const_cast<RDebugLog*>(this);
   410 
   410 
   444 // ==========================================================================
   444 // ==========================================================================
   445 EXPORT_C void RDebugLog::WriteFormat( const TDesC8& aFuncName8, 
   445 EXPORT_C void RDebugLog::WriteFormat( const TDesC8& aFuncName8, 
   446                                       TRefByValue< const TDesC8 > aFmt, 
   446                                       TRefByValue< const TDesC8 > aFmt, 
   447                                       ... ) const
   447                                       ... ) const
   448     {
   448     {
   449     // coverity[UNINIT]
   449     //coverity[var_decl]
   450 	VA_LIST list; 
   450 	VA_LIST list; 
   451 	VA_START(list,aFmt);
   451 	VA_START(list,aFmt);
   452 
   452 
   453 	RDebugLog* self = const_cast<RDebugLog*>(this);
   453 	RDebugLog* self = const_cast<RDebugLog*>(this);
   454 
   454