COMP: fix compiler warning
This commit is contained in:
parent
731e1ed9cf
commit
38c3145ce1
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue