include/fmt/os.h: Eliminate shadow warning in clang.

This commit is contained in:
Martin Wührer 2020-08-14 22:19:03 +02:00
parent 56782da133
commit 90b050e89a

View File

@ -361,8 +361,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 oflag_param) : ostream_params(params...) {
this->oflag = oflag_param;
}
template <typename... T>