no message

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@122 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
humesikkins 2003-03-19 09:49:31 +00:00
parent a2f9a004c3
commit 273dc0d85e

View file

@ -916,7 +916,7 @@ namespace Private
// If T is not equal to TList::Head, the result is a typelist
// with TList::Head as its head and the result of applying
// Replace to TList::Tail, T, U as its tail
ASSERT_VALID(TList);
ASSERT_TYPELIST(TList);
typedef typename TList::Head Head;
typedef typename TList::Tail Tail;
typedef typename Select
@ -966,7 +966,7 @@ namespace Private
template <class T, class U>
struct In
{
ASSERT_VALID(TList);
ASSERT_TYPELIST(TList);
typedef typename TList::Head Head;
typedef typename TList::Tail Tail;
typedef typename Select
@ -1043,7 +1043,7 @@ namespace Private
struct In
{
private:
ASSERT_VALID(TList);
ASSERT_TYPELIST(TList);
typedef typename TList::Head Head;
typedef typename TList::Tail Tail;
typedef typename MostDerived<Tail, T>::Result Candidate;