mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-13 02:39:37 +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 )
|
inline std::string CBMSDbgInfo::getEventLegendAtBitPos( CBitMemStream& bms, sint32 eventId )
|
||||||
{
|
{
|
||||||
#ifdef NL_DEBUG
|
#ifdef NL_DEBUG
|
||||||
if ( eventId == -1 )
|
if ( eventId != -1 )
|
||||||
{
|
|
||||||
return std::string();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
nlassert( eventId < (sint32)_DbgData->List.size() );
|
nlassert( eventId < (sint32)_DbgData->List.size() );
|
||||||
TBMSSerialInfo& serialItem = _DbgData->List[eventId]; // works only with a vector!
|
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:"" );
|
bms.getSerialItem( serialItem ).c_str(), (serialItem.Symbol!=NULL)?serialItem.Symbol:"" );
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
return std::string();
|
nlunreferenced(bms);
|
||||||
|
nlunreferenced(eventId);
|
||||||
#endif
|
#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