Added typename before dependent type (needed by gcc-3.2)
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@72 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
16cf673e13
commit
57bf2d9d90
1 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@ namespace Loki
|
|||
bool Register(const IdentifierType& id, ProductCreator creator)
|
||||
{
|
||||
return associations_.insert(
|
||||
IdToProductMap::value_type(id, creator)).second;
|
||||
typename IdToProductMap::value_type(id, creator)).second;
|
||||
}
|
||||
|
||||
bool Unregister(const IdentifierType& id)
|
||||
|
@ -107,7 +107,7 @@ namespace Loki
|
|||
bool Register(const TypeInfo& ti, ProductCreator creator)
|
||||
{
|
||||
return associations_.insert(
|
||||
IdToProductMap::value_type(ti, creator)).second;
|
||||
typename IdToProductMap::value_type(ti, creator)).second;
|
||||
}
|
||||
|
||||
bool Unregister(const TypeInfo& id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue