- Debugged more PrettyPrinters, all implemented thus far work in testing
- Fixed implementation of tuple.h, TODO: Still need to complete - Wrote a PrettyPrinter for tuple.h
This commit is contained in:
@@ -32,8 +32,8 @@ namespace fennec::detail
|
||||
|
||||
template<size_t n, size_t i, typename HeadT, typename...RestT>
|
||||
struct _nth_element<n, i, HeadT, RestT...> : conditional<
|
||||
n == i, type_identity<HeadT>,
|
||||
_nth_element<n, i + 1, RestT...>
|
||||
n == i, HeadT,
|
||||
typename _nth_element<n, i + 1, RestT...>::type
|
||||
> {};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user