mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: #825 Remove all warnings when compiling Ryzom
This commit is contained in:
parent
18e11b2867
commit
5027632925
2 changed files with 6 additions and 7 deletions
|
@ -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…
Reference in a new issue