diff --git a/format.h b/format.h index d6cad8b7..32ad22f0 100644 --- a/format.h +++ b/format.h @@ -1549,14 +1549,14 @@ inline Formatter PrintColored(Color c, StringRef format) { #if FMT_USE_VARIADIC_TEMPLATES && FMT_USE_RVALUE_REFERENCES template -inline Writer Format(const StringRef &format, const Args & ... args) { +inline Writer Format(StringRef format, const Args & ... args) { Writer w; w.Format(format, args...); return std::move(w); } template -inline WWriter Format(const WStringRef &format, const Args & ... args) { +inline WWriter Format(WStringRef format, const Args & ... args) { WWriter w; w.Format(format, args...); return std::move(w);