فهرست منبع

Makefiles: Rename local variable

In this context, 'ret' means 'return', but I don't really know what that
means.  It is not consistent with types and other variables used in the
vicinity for these things.
Stephen Kelly 9 سال پیش
والد
کامیت
0bbdbd95c9
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      Source/cmLocalUnixMakefileGenerator3.cxx

+ 2 - 2
Source/cmLocalUnixMakefileGenerator3.cxx

@@ -2048,10 +2048,10 @@ void cmLocalUnixMakefileGenerator3::CreateCDCommand(
   std::vector<std::string>& commands, const char* tgtDir,
   cmOutputConverter::RelativeRoot relRetDir)
 {
-  const char* retDir = this->GetRelativeRootPath(relRetDir);
+  const char* relDir = this->GetRelativeRootPath(relRetDir);
 
   // do we need to cd?
-  if (!strcmp(tgtDir, retDir)) {
+  if (!strcmp(tgtDir, relDir)) {
     return;
   }