From ec8b9cbf5dec6f5f4d7103074cb25f40f53ce876 Mon Sep 17 00:00:00 2001 From: jbouchard Date: Thu, 7 Nov 2002 18:49:05 +0000 Subject: [PATCH] Renamed TypeList -> Typelist git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@74 7ec92016-0320-0410-acc4-a06ded1c099a --- MSVC/1300/DataGenerators.h | 4 ++-- Reference/DataGenerators.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MSVC/1300/DataGenerators.h b/MSVC/1300/DataGenerators.h index ebc1bb6..edcf21f 100644 --- a/MSVC/1300/DataGenerators.h +++ b/MSVC/1300/DataGenerators.h @@ -14,7 +14,7 @@ // Last update: Oct 10, 2002 #pragma once -#include "TypeList.h" +#include "Typelist.h" //MSVC7 version namespace Loki @@ -169,7 +169,7 @@ namespace Loki //////////////////////////////////////////////////////////////////////////////// // class template IterateTypes -// Iteratates a TypeList, and invokes the ctor of GenFunc +// Iteratates a Typelist, and invokes the ctor of GenFunc // for each type in the list, passing a functor along the way. // The functor is designed to be an insertion iterator which GenFunc // can use to output information about the types in the list. diff --git a/Reference/DataGenerators.h b/Reference/DataGenerators.h index c297363..bca2691 100644 --- a/Reference/DataGenerators.h +++ b/Reference/DataGenerators.h @@ -14,13 +14,13 @@ #ifndef DATAGENERATORS_H #define DATAGENERATORS_H -#include "TypeList.h" +#include "Typelist.h" //Reference version /************************************************************************************ // class template GenData -// Iteratates a TypeList, and invokes the functor GenFunc +// Iteratates a Typelist, and invokes the functor GenFunc // for each type in the list, passing a functor along the way. // The functor is designed to be an insertion iterator which GenFunc // can use to output information about the types in the list.