Introduced typedef's to make the code more readble and maintanable
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user