Changed: #825 Remove all warnings when compiling Ryzom

This commit is contained in:
kervala 2010-12-12 15:10:53 +01:00
parent 29331af355
commit 20ddae2c0f
3 changed files with 10 additions and 2 deletions

View file

@ -736,7 +736,9 @@ inline void CIndexBuffer::lock (CIndexBufferReadWrite &accessor, uint first, uin
}
}
else
{
nlassert ((first==0)&&(last==0));
}
_LockCounter++;
}
@ -771,7 +773,9 @@ inline void CIndexBuffer::lock (CIndexBufferRead &accessor, uint first, uint las
}
}
else
{
nlassert ((first==0)&&(last==0));
}
_LockCounter++;
}

View file

@ -1177,7 +1177,9 @@ inline void CVertexBuffer::lock (CVertexBufferReadWrite &accessor, uint first, u
}
}
else
{
nlassert ((first==0)&&(last==0));
}
_LockCounter++;
}
@ -1212,7 +1214,9 @@ inline void CVertexBuffer::lock (CVertexBufferRead &accessor, uint first, uint l
}
}
else
{
nlassert ((first==0)&&(last==0));
}
_LockCounter++;
}

View file

@ -104,13 +104,13 @@ CFontGenerator::CFontGenerator (const std::string &fontFileName, const std::stri
}
string fontEx = fontExFileName;
if (fontEx == "")
if (fontEx.empty())
{
// try to see if the ex filename exists based on the fontExFileName
fontEx = CPath::lookup(CFile::getFilenameWithoutExtension (fontFileName)+".afm", false, false);
}
if (fontEx != "")
if (!fontEx.empty())
{
error = FT_Attach_File (_Face, fontEx.c_str ());
if (error)