cmMakefile: Fix style.

Use this-> for member access.
This commit is contained in:
Stephen Kelly 2014-03-17 15:34:53 +01:00
parent 10e6f1e716
commit 19012b4652
1 changed files with 1 additions and 1 deletions

View File

@ -2101,7 +2101,7 @@ cmSourceFile *cmMakefile::GetSourceFileWithOutput(
// linear-time search for an output with a matching suffix.
if(!cmSystemTools::FileIsFullPath(name.c_str()))
{
return LinearGetSourceFileWithOutput(name);
return this->LinearGetSourceFileWithOutput(name);
}
// Otherwise we use an efficient lookup map.
OutputToSourceMap::const_iterator o = this->OutputToSource.find(name);