Eliminate more pass-by-value in variadic calls
This commit is contained in:
parent
603b2f583c
commit
092af3c826
|
@ -97,14 +97,14 @@ public:
|
||||||
unsigned int status = 1; // exit status
|
unsigned int status = 1; // exit status
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
BaseError(unsigned int status, Args... args)
|
BaseError(unsigned int status, const Args & ... args)
|
||||||
: err(fmt(args...))
|
: err(fmt(args...))
|
||||||
, status(status)
|
, status(status)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
BaseError(Args... args)
|
BaseError(const Args & ... args)
|
||||||
: err(fmt(args...))
|
: err(fmt(args...))
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -136,7 +136,7 @@ public:
|
||||||
int errNo;
|
int errNo;
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
SysError(Args... args)
|
SysError(const Args & ... args)
|
||||||
: Error(addErrno(fmt(args...)))
|
: Error(addErrno(fmt(args...)))
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
|
|
|
@ -299,7 +299,7 @@ public:
|
||||||
int status;
|
int status;
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
ExecError(int status, Args... args)
|
ExecError(int status, const Args & ... args)
|
||||||
: Error(args...), status(status)
|
: Error(args...), status(status)
|
||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue