Merge pull request #335 from abma/master

fix most warnings with -pedantic
This commit is contained in:
Alexander Gessler
2014-08-17 17:49:21 -07:00
23 changed files with 95 additions and 95 deletions

View File

@@ -498,7 +498,7 @@ void ReadBinaryDataArrayHead(const char*& data, const char* end, char& type, uin
// read binary data array, assume cursor points to the 'compression mode' field (i.e. behind the header)
void ReadBinaryDataArray(char type, uint32_t count, const char*& data, const char* end,
std::vector<char>& buff,
const Element& el)
const Element& /*el*/)
{
BE_NCONST uint32_t encmode = SafeParse<uint32_t>(data, end);
AI_SWAP4(encmode);