exr: Override the actual function signature

For gcc there's a typedef that makes it work, but seems clang in macos is
not so lucky

BUGS: 439767
This commit is contained in:
Albert Astals Cid 2021-07-12 20:15:12 +02:00
parent 3266a9c466
commit 5aa03c12ad

View File

@ -44,8 +44,8 @@ public:
}
bool read(char c[], int n) override;
Imf::Int64 tellg() override;
void seekg(Imf::Int64 pos) override;
uint64_t tellg() override;
void seekg(uint64_t pos) override;
void clear() override;
private:
@ -65,12 +65,12 @@ bool K_IStream::read(char c[], int n)
return false;
}
Imf::Int64 K_IStream::tellg()
uint64_t K_IStream::tellg()
{
return m_dev->pos();
}
void K_IStream::seekg(Imf::Int64 pos)
void K_IStream::seekg(uint64_t pos)
{
m_dev->seek(pos);
}