COMP: fix compiler warning

This commit is contained in:
Ken Martin 2006-02-15 12:32:43 -05:00
parent 731e1ed9cf
commit 38c3145ce1
1 changed files with 4 additions and 3 deletions

View File

@ -37,6 +37,10 @@ class cmSourceFile;
class cmMakefileTargetGenerator class cmMakefileTargetGenerator
{ {
public: public:
// constructor to set the ivars
cmMakefileTargetGenerator();
virtual ~cmMakefileTargetGenerator() {};
// construct using this factory call // construct using this factory call
static cmMakefileTargetGenerator *New(cmLocalUnixMakefileGenerator3 *lg, static cmMakefileTargetGenerator *New(cmLocalUnixMakefileGenerator3 *lg,
cmStdString tgtName, cmStdString tgtName,
@ -144,9 +148,6 @@ protected:
return this->LocalGenerator->Convert(source, relative, output, optional); return this->LocalGenerator->Convert(source, relative, output, optional);
} }
// constructor to set the ivars
cmMakefileTargetGenerator();
}; };
#endif #endif