mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 07:43:03 +04:00
Merge pull request #13705 from mshabunin:clang-warnings
This commit is contained in:
@@ -78,7 +78,7 @@ template<typename T> struct tuple_wrap_helper
|
||||
template<typename... Objs>
|
||||
struct tuple_wrap_helper<std::tuple<Objs...>>
|
||||
{
|
||||
static std::tuple<Objs...> get(std::tuple<Objs...>&& objs) { return objs; }
|
||||
static std::tuple<Objs...> get(std::tuple<Objs...>&& objs) { return std::forward<std::tuple<Objs...>>(objs); }
|
||||
};
|
||||
|
||||
template<typename, typename, typename>
|
||||
|
||||
Reference in New Issue
Block a user