mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 06:29:05 +08:00
Merge pull request #3251 from BillyONeal/master
Remove call to nonexistent member of std::fpos.
This commit is contained in:
commit
7a1003f2ce
@ -247,7 +247,7 @@ namespace vcpkg::CoffFileReader
|
||||
{
|
||||
void set_to_offset(const fpos_t position) { this->m_absolute_position = position; }
|
||||
|
||||
void set_to_current_pos(fstream& fs) { this->m_absolute_position = fs.tellg().seekpos(); }
|
||||
void set_to_current_pos(fstream& fs) { this->m_absolute_position = fs.tellg(); }
|
||||
|
||||
void seek_to_marker(fstream& fs) const { fs.seekg(this->m_absolute_position, ios_base::beg); }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user