From 90b050e89a5665f1e1f5e488f155e54b332f3e2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20W=C3=BChrer?= Date: Fri, 14 Aug 2020 22:19:03 +0200 Subject: [PATCH] include/fmt/os.h: Eliminate shadow warning in clang. --- include/fmt/os.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/os.h b/include/fmt/os.h index 7796260a..416200c1 100644 --- a/include/fmt/os.h +++ b/include/fmt/os.h @@ -361,8 +361,8 @@ struct ostream_params { ostream_params() {} template - 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