Browse Source

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 years ago
parent
commit
b317b38d33
1 changed files with 1 additions and 1 deletions
  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();