lib: cleaned up old references

This commit is contained in:
itsmattkc 2022-07-18 11:26:26 -07:00
parent 1ab22fd85c
commit bc4ddfd7ac
2 changed files with 3 additions and 4 deletions

View file

@ -106,7 +106,7 @@ RIFF::Chk RIFF::BeginChunk(FileBase *f, uint32_t type)
void RIFF::EndChunk(FileBase *f, const Chk &stat)
{
std::ios::pos_type now = f->pos();
size_t now = f->pos();
uint32_t sz = now - stat.data_start;

View file

@ -36,8 +36,8 @@ public:
struct Chk
{
std::ios::pos_type size_position;
std::ios::pos_type data_start;
size_t size_position;
size_t data_start;
};
static Chk BeginChunk(FileBase *f, uint32_t type);
@ -133,7 +133,6 @@ public:
class pad_ : public RIFF
{
public:
static void WriteArbitraryPadding(std::ostream &os, uint32_t size);
};
/**