mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-18 04:53:06 +01:00
Fixed bx::isMoveConstructible.
This commit is contained in:
@@ -284,7 +284,7 @@ namespace bx
|
||||
template<typename Ty>
|
||||
inline constexpr bool isMoveConstructible()
|
||||
{
|
||||
return isConstructible<Ty>();
|
||||
return isConstructible<Ty, AddRvalueReferenceType<Ty>>();
|
||||
}
|
||||
|
||||
template<typename Ty, typename... ArgsT>
|
||||
|
||||
Reference in New Issue
Block a user