Fix warning about moved from object (#3889)
This commit is contained in:
parent
2ca8dabeb9
commit
80dfb049b3
@ -25,28 +25,28 @@ inline std::size_t concat_length()
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
inline std::size_t concat_length(const char* cstr, Args&& ... rest);
|
inline std::size_t concat_length(const char* cstr, const Args& ... rest);
|
||||||
|
|
||||||
template<typename StringType, typename... Args>
|
template<typename StringType, typename... Args>
|
||||||
inline std::size_t concat_length(const StringType& str, Args&& ... rest);
|
inline std::size_t concat_length(const StringType& str, const Args& ... rest);
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
inline std::size_t concat_length(const char /*c*/, Args&& ... rest)
|
inline std::size_t concat_length(const char /*c*/, const Args& ... rest)
|
||||||
{
|
{
|
||||||
return 1 + concat_length(std::forward<Args>(rest)...);
|
return 1 + concat_length(rest...);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
inline std::size_t concat_length(const char* cstr, Args&& ... rest)
|
inline std::size_t concat_length(const char* cstr, const Args& ... rest)
|
||||||
{
|
{
|
||||||
// cppcheck-suppress ignoredReturnValue
|
// cppcheck-suppress ignoredReturnValue
|
||||||
return ::strlen(cstr) + concat_length(std::forward<Args>(rest)...);
|
return ::strlen(cstr) + concat_length(rest...);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename StringType, typename... Args>
|
template<typename StringType, typename... Args>
|
||||||
inline std::size_t concat_length(const StringType& str, Args&& ... rest)
|
inline std::size_t concat_length(const StringType& str, const Args& ... rest)
|
||||||
{
|
{
|
||||||
return str.size() + concat_length(std::forward<Args>(rest)...);
|
return str.size() + concat_length(rest...);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename OutStringType>
|
template<typename OutStringType>
|
||||||
@ -137,7 +137,7 @@ template<typename OutStringType = std::string, typename... Args>
|
|||||||
inline OutStringType concat(Args && ... args)
|
inline OutStringType concat(Args && ... args)
|
||||||
{
|
{
|
||||||
OutStringType str;
|
OutStringType str;
|
||||||
str.reserve(concat_length(std::forward<Args>(args)...));
|
str.reserve(concat_length(args...));
|
||||||
concat_into(str, std::forward<Args>(args)...);
|
concat_into(str, std::forward<Args>(args)...);
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
@ -4169,28 +4169,28 @@ inline std::size_t concat_length()
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
inline std::size_t concat_length(const char* cstr, Args&& ... rest);
|
inline std::size_t concat_length(const char* cstr, const Args& ... rest);
|
||||||
|
|
||||||
template<typename StringType, typename... Args>
|
template<typename StringType, typename... Args>
|
||||||
inline std::size_t concat_length(const StringType& str, Args&& ... rest);
|
inline std::size_t concat_length(const StringType& str, const Args& ... rest);
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
inline std::size_t concat_length(const char /*c*/, Args&& ... rest)
|
inline std::size_t concat_length(const char /*c*/, const Args& ... rest)
|
||||||
{
|
{
|
||||||
return 1 + concat_length(std::forward<Args>(rest)...);
|
return 1 + concat_length(rest...);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
inline std::size_t concat_length(const char* cstr, Args&& ... rest)
|
inline std::size_t concat_length(const char* cstr, const Args& ... rest)
|
||||||
{
|
{
|
||||||
// cppcheck-suppress ignoredReturnValue
|
// cppcheck-suppress ignoredReturnValue
|
||||||
return ::strlen(cstr) + concat_length(std::forward<Args>(rest)...);
|
return ::strlen(cstr) + concat_length(rest...);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename StringType, typename... Args>
|
template<typename StringType, typename... Args>
|
||||||
inline std::size_t concat_length(const StringType& str, Args&& ... rest)
|
inline std::size_t concat_length(const StringType& str, const Args& ... rest)
|
||||||
{
|
{
|
||||||
return str.size() + concat_length(std::forward<Args>(rest)...);
|
return str.size() + concat_length(rest...);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename OutStringType>
|
template<typename OutStringType>
|
||||||
@ -4281,7 +4281,7 @@ template<typename OutStringType = std::string, typename... Args>
|
|||||||
inline OutStringType concat(Args && ... args)
|
inline OutStringType concat(Args && ... args)
|
||||||
{
|
{
|
||||||
OutStringType str;
|
OutStringType str;
|
||||||
str.reserve(concat_length(std::forward<Args>(args)...));
|
str.reserve(concat_length(args...));
|
||||||
concat_into(str, std::forward<Args>(args)...);
|
concat_into(str, std::forward<Args>(args)...);
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user