ERR: Fix error on bad C++ compiler that do not handle return void
This commit is contained in:
parent
ef20a2a8a9
commit
7eb7973393
|
@ -539,7 +539,7 @@ void cmRemoveFile(const char *name)
|
|||
void cmDisplayStatus(void *arg, const char* message)
|
||||
{
|
||||
cmMakefile *mf = static_cast<cmMakefile *>(arg);
|
||||
return mf->DisplayStatus(message, -1);
|
||||
mf->DisplayStatus(message, -1);
|
||||
}
|
||||
|
||||
void cmFree(void *data)
|
||||
|
|
Loading…
Reference in New Issue