You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"asTuple() on an l-value is deprecated, as it implicitly moves the UniqueHandle out of the ResultValue. Use asTuple() on an r-value instead, requiring to explicitly move the UniqueHandle." )
76
-
std::tuple<Result, UniqueHandle<Type, Dispatch>>
77
-
asTuple() &
78
-
{
79
-
returnstd::make_tuple( result, std::move( value ) );
ResultValue( Result r, std::vector<UniqueHandle<Type, Dispatch>> && v ) VULKAN_HPP_NOEXCEPT
96
-
# else
97
-
ResultValue( Result r, std::vector<UniqueHandle<Type, Dispatch>> && v )
98
-
# endif
99
-
: result( r )
100
-
, value( std::move( v ) )
101
-
{}
102
-
103
-
VULKAN_HPP_DEPRECATED(
104
-
"asTuple() on an l-value is deprecated, as it implicitly moves the UniqueHandle out of the ResultValue. Use asTuple() on an r-value instead, requiring to explicitly move the UniqueHandle." )
ResultValue( Result r, UniqueHandle<Type, Dispatch> && v ) VULKAN_HPP_NOEXCEPT
8592
-
# else
8593
-
ResultValue( Result r, UniqueHandle<Type, Dispatch> && v )
8594
-
# endif
8595
-
: result( r )
8596
-
, value( std::move( v ) )
8597
-
{
8598
-
}
8599
-
8600
-
VULKAN_HPP_DEPRECATED(
8601
-
"asTuple() on an l-value is deprecated, as it implicitly moves the UniqueHandle out of the ResultValue. Use asTuple() on an r-value instead, requiring to explicitly move the UniqueHandle." )
ResultValue( Result r, std::vector<UniqueHandle<Type, Dispatch>> && v ) VULKAN_HPP_NOEXCEPT
8622
-
# else
8623
-
ResultValue( Result r, std::vector<UniqueHandle<Type, Dispatch>> && v )
8624
-
# endif
8625
-
: result( r )
8626
-
, value( std::move( v ) )
8627
-
{
8628
-
}
8629
-
8630
-
VULKAN_HPP_DEPRECATED(
8631
-
"asTuple() on an l-value is deprecated, as it implicitly moves the UniqueHandle out of the ResultValue. Use asTuple() on an r-value instead, requiring to explicitly move the UniqueHandle." )
0 commit comments