Fix std::forward return in toLocalString (#134)

This commit is contained in:
Jan Koßmann 2018-09-27 03:28:07 +02:00 committed by Jarryd Beck
parent 00e8ecc482
commit 290f750ee7

View File

@ -202,7 +202,7 @@ namespace cxxopts
T
toLocalString(T&& t)
{
return t;
return std::forward<T>(t);
}
inline