diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-03-17 14:34:53 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-03-17 14:34:53 (GMT) |
commit | 19012b4652953ea8d8a470d1790419b1d8682850 (patch) | |
tree | ae665ea98361e8a6aaaad72f6593b635a85b75a7 /Source/cmMakefile.cxx | |
parent | 10e6f1e716758c5ad5dcb63a5c69551ff3b9f6ff (diff) | |
download | CMake-19012b4652953ea8d8a470d1790419b1d8682850.zip CMake-19012b4652953ea8d8a470d1790419b1d8682850.tar.gz CMake-19012b4652953ea8d8a470d1790419b1d8682850.tar.bz2 |
cmMakefile: Fix style.
Use this-> for member access.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index f312399..f390237 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -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); |