Kaydet (Commit) 6e9b859f authored tarafından Takeshi Abe's avatar Takeshi Abe

Drop useless const

Change-Id: Ifcdd921b08af10ff17dc3da7b811b6aed74baf98
üst 29c71853
......@@ -129,13 +129,13 @@ WPXInputStream *DirectoryStream::getDocumentOLEStream(const char *const pName)
return input;
}
const unsigned char *DirectoryStream::read(const unsigned long, unsigned long &nNumBytesRead)
const unsigned char *DirectoryStream::read(unsigned long, unsigned long &nNumBytesRead)
{
nNumBytesRead = 0;
return 0;
}
int DirectoryStream::seek(const long, const WPX_SEEK_TYPE)
int DirectoryStream::seek(long, WPX_SEEK_TYPE)
{
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment