Changed: #825 Remove all warnings when compiling Ryzom

hg/feature/gsoc2012-fabien
kervala 13 years ago
parent 18e11b2867
commit 5027632925

@ -801,11 +801,7 @@ void displayBitStream( const CBitMemStream& msg, sint beginbitpos, sint endbitpo
inline std::string CBMSDbgInfo::getEventLegendAtBitPos( CBitMemStream& bms, sint32 eventId )
{
#ifdef NL_DEBUG
if ( eventId == -1 )
{
return std::string();
}
else
if ( eventId != -1 )
{
nlassert( eventId < (sint32)_DbgData->List.size() );
TBMSSerialInfo& serialItem = _DbgData->List[eventId]; // works only with a vector!
@ -814,8 +810,11 @@ inline std::string CBMSDbgInfo::getEventLegendAtBitPos( CBitMemStream& bms, sint
bms.getSerialItem( serialItem ).c_str(), (serialItem.Symbol!=NULL)?serialItem.Symbol:"" );
}
#else
return std::string();
nlunreferenced(bms);
nlunreferenced(eventId);
#endif
return std::string();
}

@ -93,7 +93,7 @@ public:
{
}
explicit CStaticMap (const Comp& __comp) : _DataSorted(true)
explicit CStaticMap (const Comp& /* __comp */) : _DataSorted(true)
{
}

Loading…
Cancel
Save