🎨 🐛 Rename all shadowed types and variables

This commit is contained in:
Jonathan Gopel
2020-11-03 07:30:27 -08:00
committed by Victor Zverovich
parent 771292c328
commit e904e891bd
7 changed files with 41 additions and 42 deletions
+2 -2
View File
@@ -363,8 +363,8 @@ struct ostream_params {
ostream_params() {}
template <typename... T>
ostream_params(T... params, int oflag) : ostream_params(params...) {
this->oflag = oflag;
ostream_params(T... params, int new_oflag) : ostream_params(params...) {
oflag = new_oflag;
}
template <typename... T>