Browse Source

ENH: fix compiler warning

Ken Martin 19 years ago
parent
commit
0b7e1f5398
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Source/cmPropertyDefinition.cxx

+ 4 - 0
Source/cmPropertyDefinition.cxx

@@ -53,6 +53,10 @@ void cmPropertyDefinition
       break;
     case cmProperty::DIRECTORY: this->LongName += " on a directory";
       break;
+    case cmProperty::GLOBAL: this->LongName += " globaly";
+      break;
+    case cmProperty::TEST: this->LongName += " on CTest";
+      break;
     }
 }