cmMakefile: Fix style.
Use this-> for member access.
This commit is contained in:
parent
10e6f1e716
commit
19012b4652
@ -2101,7 +2101,7 @@ cmSourceFile *cmMakefile::GetSourceFileWithOutput(
|
|||||||
// linear-time search for an output with a matching suffix.
|
// linear-time search for an output with a matching suffix.
|
||||||
if(!cmSystemTools::FileIsFullPath(name.c_str()))
|
if(!cmSystemTools::FileIsFullPath(name.c_str()))
|
||||||
{
|
{
|
||||||
return LinearGetSourceFileWithOutput(name);
|
return this->LinearGetSourceFileWithOutput(name);
|
||||||
}
|
}
|
||||||
// Otherwise we use an efficient lookup map.
|
// Otherwise we use an efficient lookup map.
|
||||||
OutputToSourceMap::const_iterator o = this->OutputToSource.find(name);
|
OutputToSourceMap::const_iterator o = this->OutputToSource.find(name);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user