? unxlngi4.pro Index: source/ary/inc/sci_impl.hxx =================================================================== RCS file: /cvs/tools/autodoc/source/ary/inc/sci_impl.hxx,v retrieving revision 1.1 diff -u -b -B -p -r1.1 sci_impl.hxx --- source/ary/inc/sci_impl.hxx 1 Nov 2002 17:13:48 -0000 1.1 +++ source/ary/inc/sci_impl.hxx 22 Feb 2003 13:34:52 -0000 @@ -82,7 +82,7 @@ class SCI_Vector : public StdConstIterat { public: typedef std::vector source; - typedef source::const_iterator source_iterator; + typedef typename source::const_iterator source_iterator; SCI_Vector( const source & i_rSource ); @@ -109,7 +109,7 @@ class SCI_Map : public StdConstIterator< { public: typedef std::map source; - typedef source::const_iterator source_iterator; + typedef typename source::const_iterator source_iterator; SCI_Map( const source & i_rSource ); @@ -139,7 +139,7 @@ class SCI_Set : public StdConstIterator< typedef typename TYPES::element_type element; typedef typename TYPES::sort_type sorter; typedef std::set source; - typedef source::const_iterator source_iterator; + typedef typename source::const_iterator source_iterator; SCI_Set( const source & i_rSource ); Index: source/ary/inc/store/st_root.hxx =================================================================== RCS file: /cvs/tools/autodoc/source/ary/inc/store/st_root.hxx,v retrieving revision 1.1 diff -u -b -B -p -r1.1 st_root.hxx --- source/ary/inc/store/st_root.hxx 1 Nov 2002 17:13:58 -0000 1.1 +++ source/ary/inc/store/st_root.hxx 22 Feb 2003 13:34:53 -0000 @@ -302,7 +302,7 @@ Root::EraseAll() } template -Root::const_iterator +typename Root::const_iterator Root::Begin() const { const_iterator ret(dpBlocks, pBlocksEnd, (*dpBlocks).Begin()); @@ -311,7 +311,7 @@ Root::Begin() const } template -Root::iterator +typename Root::iterator Root::Begin() { iterator ret(dpBlocks, pBlocksEnd, (*dpBlocks).Begin()); @@ -341,7 +341,7 @@ Root::Expand() which can stay where it is. */ template -Root::block_type * +typename Root::block_type * Root::ResizeBlockList() { uintt nOldSize = pBlocksEnd - dpBlocks; Index: source/ary/store/t_storg.hxx =================================================================== RCS file: /cvs/tools/autodoc/source/ary/store/t_storg.hxx,v retrieving revision 1.1.1.1 diff -u -b -B -p -r1.1.1.1 t_storg.hxx --- source/ary/store/t_storg.hxx 8 Mar 2002 14:45:20 -0000 1.1.1.1 +++ source/ary/store/t_storg.hxx 22 Feb 2003 13:34:53 -0000 @@ -131,7 +131,7 @@ RE & StdReStorage::do_Add( const KEY & i_rKey, DYN RE & let_drElement ) { - std::pair result + std::pair result = aDataBase.insert(DataBase::value_type(i_rKey, &let_drElement)); if (result.second == false) delete &let_drElement; @@ -142,7 +142,7 @@ template uintt StdReStorage::do_ForEach( const Manipulator< RE > & i_rManip ) { - for ( DataBase::iterator it = aDataBase.begin(); + for ( typename DataBase::iterator it = aDataBase.begin(); it != aDataBase.end(); ++it ) { Index: source/exes/adc_uni/adc_cmds.hxx =================================================================== RCS file: /cvs/tools/autodoc/source/exes/adc_uni/adc_cmds.hxx,v retrieving revision 1.2 diff -u -b -B -p -r1.2 adc_cmds.hxx --- source/exes/adc_uni/adc_cmds.hxx 14 Nov 2002 18:02:01 -0000 1.2 +++ source/exes/adc_uni/adc_cmds.hxx 22 Feb 2003 13:34:55 -0000 @@ -178,7 +178,7 @@ CreateHtml::OutputDir() const //inline const String & //Save::ReposyDir() const // { return sRepositoryDirectory; } -#endif 0 // KORR_FUTURE +#endif // 0 - KORR_FUTURE Index: source/inc/estack.hxx =================================================================== RCS file: /cvs/tools/autodoc/source/inc/estack.hxx,v retrieving revision 1.1.1.1 diff -u -b -B -p -r1.1.1.1 estack.hxx --- source/inc/estack.hxx 8 Mar 2002 14:45:27 -0000 1.1.1.1 +++ source/inc/estack.hxx 22 Feb 2003 13:34:57 -0000 @@ -82,7 +82,7 @@ class EStack : private std::slist public: typedef ELEM value_type; - typedef std::slist::size_type size_type; + typedef typename std::slist::size_type size_type; // LIFECYCLE EStack() {} Index: source/parser/inc/semantic/callf.hxx =================================================================== RCS file: /cvs/tools/autodoc/source/parser/inc/semantic/callf.hxx,v retrieving revision 1.1.1.1 diff -u -b -B -p -r1.1.1.1 callf.hxx --- source/parser/inc/semantic/callf.hxx 8 Mar 2002 14:45:33 -0000 1.1.1.1 +++ source/parser/inc/semantic/callf.hxx 22 Feb 2003 13:34:57 -0000 @@ -111,7 +111,7 @@ template class PeStatus { public: - typedef CallFunction::F_Tok F_Tok; + typedef typename CallFunction::F_Tok F_Tok; PeStatus( PE & i_rMyPE, @@ -180,7 +180,7 @@ CallFunction::CallFunction( F_Tok i } template -inline CallFunction::F_Tok +inline typename CallFunction::F_Tok CallFunction::GetF() const { return f2Call; Index: source/parser/tokens/tkpstama.cxx =================================================================== RCS file: /cvs/tools/autodoc/source/parser/tokens/tkpstama.cxx,v retrieving revision 1.2 diff -u -b -B -p -r1.2 tkpstama.cxx --- source/parser/tokens/tkpstama.cxx 14 May 2002 09:02:20 -0000 1.2 +++ source/parser/tokens/tkpstama.cxx 22 Feb 2003 13:34:57 -0000 @@ -211,7 +211,7 @@ StateMachine::Peek(intt in_nBranch) void StateMachine::PrintOut() { - const anzahl = nNrofStati; + const intt anzahl = nNrofStati; for (int i = 0; i < anzahl; i++) { Cout() << i << ':'; Index: source/parser_i/tokens/tkpstam2.cxx =================================================================== RCS file: /cvs/tools/autodoc/source/parser_i/tokens/tkpstam2.cxx,v retrieving revision 1.1.1.1 diff -u -b -B -p -r1.1.1.1 tkpstam2.cxx --- source/parser_i/tokens/tkpstam2.cxx 8 Mar 2002 14:45:36 -0000 1.1.1.1 +++ source/parser_i/tokens/tkpstam2.cxx 22 Feb 2003 13:34:58 -0000 @@ -210,7 +210,7 @@ StateMachin2::Peek(intt in_nBranch) void StateMachin2::PrintOut() { - const anzahl = nNrofStati; + const intt anzahl = nNrofStati; for (int i = 0; i < anzahl; i++) { Cout() << i << ':';