Browse Source

Style: Use this-> when invoking member functions.

Stephen Kelly 13 years ago
parent
commit
2ce7231f56
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/cmIncludeDirectoryCommand.cxx

+ 2 - 2
Source/cmIncludeDirectoryCommand.cxx

@@ -115,13 +115,13 @@ void cmIncludeDirectoryCommand::GetIncludes(const std::string &arg,
     if (pos)
       {
       std::string inc = arg.substr(lastPos,pos);
-      NormalizeInclude(inc);
+      this->NormalizeInclude(inc);
       incs.push_back(inc);
       }
     lastPos = pos + 1;
     }
   std::string inc = arg.substr(lastPos);
-  NormalizeInclude(inc);
+  this->NormalizeInclude(inc);
   incs.push_back(inc);
 }