gobj: Remove TextureStage::write() overload, use default arg instead

This was only an overload in 1.10 so that it wouldn't break the ABI
This commit is contained in:
rdb 2022-11-03 10:14:51 +01:00
parent e75aae62f0
commit dba65d8bd4
2 changed files with 1 additions and 10 deletions

View File

@ -217,14 +217,6 @@ compare_to(const TextureStage &other) const {
return 0;
}
/**
* Writes the details of this stage
*/
void TextureStage::
write(ostream &out) const {
write(out, 0);
}
/**
* Writes the details of this stage
*/

View File

@ -181,8 +181,7 @@ PUBLISHED:
int compare_to(const TextureStage &other) const;
void write(std::ostream &out) const;
void write(std::ostream &out, int indent_level) const;
void write(std::ostream &out, int indent_level = 0) const;
void output(std::ostream &out) const;
INLINE static TextureStage *get_default();