add missing typename

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3913 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-04-05 19:54:17 +00:00
parent 80d6670b7b
commit 23b42a468f
2 changed files with 40 additions and 36 deletions

View File

@ -1,3 +1,7 @@
2002-04-05 Lars Gullik Bjønnes <larsbj@birdstep.com>
* translator.h: add missing typename
2002-03-27 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* filetools.C (LibScriptSearch): new command. Searches for scripts
@ -492,7 +496,7 @@
2001-01-23 Dekel Tsur <dekelts@tau.ac.il>
* lstrings.C (strip): Add a fix for compilers with broken
string::find_last_not_of.
string::find_last_not_of.
* filetools.C (AddPath): Simplify by using strip and frontStrip.

View File

@ -52,7 +52,7 @@ public:
lyx::Assert(!map.empty());
// For explanation see the next find() function.
Map::const_iterator it =
typename Map::const_iterator it =
std::find_if(map.begin(), map.end(),
lyx::equal_1st_in_pair<MapPair>(first)
);
@ -79,7 +79,7 @@ public:
//
// We can depict it as follows:
// equal_to(select2nd(pair) , second)
Map::const_iterator it =
typename Map::const_iterator it =
std::find_if(map.begin(), map.end(),
lyx::equal_2nd_in_pair<MapPair>(second)
);