mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Remove c10::guts::{conjunction,disjunction} (#127726)
They are not used in Pytorch OSS. Pull Request resolved: https://github.com/pytorch/pytorch/pull/127726 Approved by: https://github.com/ezyang
This commit is contained in:
@ -54,11 +54,6 @@ make_unique_base(Args&&... args) {
|
||||
return std::unique_ptr<Base>(new Child(std::forward<Args>(args)...));
|
||||
}
|
||||
|
||||
template <class... B>
|
||||
using conjunction = std::conjunction<B...>;
|
||||
template <class... B>
|
||||
using disjunction = std::disjunction<B...>;
|
||||
|
||||
#if defined(__cpp_lib_apply) && !defined(__CUDA_ARCH__) && !defined(__HIP__)
|
||||
|
||||
template <class F, class Tuple>
|
||||
|
Reference in New Issue
Block a user