Fixed warnings

This commit is contained in:
Robert Osfield
2009-01-07 11:24:47 +00:00
parent 98bd058317
commit 418dc34776
43 changed files with 67 additions and 65 deletions

View File

@@ -51,6 +51,9 @@ namespace iff
inline std::ostream &os() { return os_; }
private:
GenericParser& operator = (const GenericParser&) { return *this; }
Chunk_list chunks_;
std::ostream &os_;
};

View File

@@ -34,6 +34,8 @@ namespace lwo2
protected:
virtual iff::Chunk *parse_chunk_data(const std::string &tag, const std::string &context, Iter it, Iter end);
iff::Chunk *parse_subchunk(Iter &it, const std::string &context);
Parser& operator = (const Parser&) { return *this; }
};