Przeglądaj źródła

cmGlobalBorlandMakefileGenerator: Do not inherit from NMake generator

The Borland generator re-implements every method the NMake generator
does, so there is no reason to inherit this way.  Instead inherit
directly from cmGlobalUnixMakefileGenerator3 like all the other
makefile generators do.
Brad King 10 lat temu
rodzic
commit
b317b38d33
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      Source/cmGlobalBorlandMakefileGenerator.h

+ 1 - 1
Source/cmGlobalBorlandMakefileGenerator.h

@@ -19,7 +19,7 @@
  *
  * cmGlobalBorlandMakefileGenerator manages nmake build process for a tree
  */
-class cmGlobalBorlandMakefileGenerator : public cmGlobalNMakeMakefileGenerator
+class cmGlobalBorlandMakefileGenerator : public cmGlobalUnixMakefileGenerator3
 {
 public:
   cmGlobalBorlandMakefileGenerator();