mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-06-03 17:08:08 -04:00
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:
parent
3266a9c466
commit
5aa03c12ad
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user