fixed multiple build warnings

This commit is contained in:
Vadim Pisarevsky
2012-09-04 14:15:00 +04:00
parent e17b70e533
commit bf7295f584
24 changed files with 62 additions and 61 deletions

View File

@@ -55,7 +55,7 @@ EnvmapAttribute::staticTypeName ()
template <>
void
EnvmapAttribute::writeValueTo (OStream &os, int version) const
EnvmapAttribute::writeValueTo (OStream &os, int) const
{
unsigned char tmp = _value;
Xdr::write <StreamIO> (os, tmp);
@@ -64,7 +64,7 @@ EnvmapAttribute::writeValueTo (OStream &os, int version) const
template <>
void
EnvmapAttribute::readValueFrom (IStream &is, int size, int version)
EnvmapAttribute::readValueFrom (IStream &is, int, int)
{
unsigned char tmp;
Xdr::read <StreamIO> (is, tmp);