Basic CTL shared_ptr implementation (#1267)

This commit is contained in:
Steven Dee (Jōshin) 2024-08-31 14:00:56 -04:00 committed by GitHub
parent a6fe62cf13
commit e1528a71e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 708 additions and 0 deletions

View file

@ -17,6 +17,9 @@ struct conditional<false, T, F>
typedef F type;
};
template<bool B, typename T, typename F>
using conditional_t = typename conditional<B, T, F>::type;
} // namespace ctl
#endif // CTL_CONDITIONAL_H_