ENH: remove warnings
This commit is contained in:
parent
c2ef51e181
commit
46a493ae74
|
@ -519,8 +519,3 @@ std::string cmLocalGenerator::ConvertToRelativeOutputPath(const char* p)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
const char* cmLocalGenerator::GetFileLanguage(const char* ext)
|
|
||||||
{
|
|
||||||
// fill a map of languages enabled
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
|
@ -91,7 +91,6 @@ public:
|
||||||
cmLocalGenerator* GetParent(){return m_Parent;}
|
cmLocalGenerator* GetParent(){return m_Parent;}
|
||||||
void SetParent(cmLocalGenerator* g) { m_Parent = g;}
|
void SetParent(cmLocalGenerator* g) { m_Parent = g;}
|
||||||
|
|
||||||
const char* GetFileLanguage(const char*);
|
|
||||||
protected:
|
protected:
|
||||||
virtual void AddInstallRule(std::ostream& fout, const char* dest, int type,
|
virtual void AddInstallRule(std::ostream& fout, const char* dest, int type,
|
||||||
const char* files, bool optional = false, const char* properties = 0);
|
const char* files, bool optional = false, const char* properties = 0);
|
||||||
|
|
|
@ -2887,6 +2887,11 @@ OutputBuildObjectFromSource(std::ostream& fout,
|
||||||
{
|
{
|
||||||
switch(format)
|
switch(format)
|
||||||
{
|
{
|
||||||
|
// these are all handled by the if(lang) step now
|
||||||
|
case cmSystemTools::C_FILE_FORMAT:
|
||||||
|
case cmSystemTools::CXX_FILE_FORMAT:
|
||||||
|
case cmSystemTools::FORTRAN_FILE_FORMAT:
|
||||||
|
break;
|
||||||
case cmSystemTools::HEADER_FILE_FORMAT:
|
case cmSystemTools::HEADER_FILE_FORMAT:
|
||||||
return;
|
return;
|
||||||
case cmSystemTools::DEFINITION_FILE_FORMAT:
|
case cmSystemTools::DEFINITION_FILE_FORMAT:
|
||||||
|
|
Loading…
Reference in New Issue