Fixed a gazillion of warnings occuring when compiling Wagic with Clang with Werror.

This commit is contained in:
Xawotihs@gmail.com
2013-06-09 21:16:39 +00:00
parent 7990540096
commit 26ab65860e
75 changed files with 303 additions and 242 deletions

View File

@@ -134,7 +134,7 @@ zbuffer_stored * zbuffer_stored::close()
int zbuffer_stored::overflow(int c)
int zbuffer_stored::overflow(int)
{
return EOF;
}
@@ -231,7 +231,7 @@ int zbuffer_stored::sync()
streambuf * zbuffer_stored::setbuf(char * pr, int nLength)
streambuf * zbuffer_stored::setbuf(char *, int)
{
return NULL;
}
@@ -298,7 +298,7 @@ zbuffer_deflated * zbuffer_deflated::close()
int zbuffer_deflated::overflow(int c)
int zbuffer_deflated::overflow(int)
{
return EOF;
}
@@ -442,7 +442,7 @@ int zbuffer_deflated::sync()
streambuf * zbuffer_deflated::setbuf(char * pr, int nLength)
streambuf * zbuffer_deflated::setbuf(char *, int)
{
return NULL;
}