Introduced typedef's to make the code more readble and maintanable

This commit is contained in:
Robert Osfield
2013-06-24 09:02:32 +00:00
parent 4044fd5a74
commit 48020eed9e
4 changed files with 16 additions and 11 deletions

View File

@@ -76,7 +76,7 @@ InputStream::~InputStream()
int InputStream::getFileVersion( const std::string& d ) const
{
if ( d.empty() ) return _fileVersion;
std::map<std::string, int>::const_iterator itr = _domainVersionMap.find(d);
VersionMap::const_iterator itr = _domainVersionMap.find(d);
return itr==_domainVersionMap.end() ? 0 : itr->second;
}