fixed some warnings
This commit is contained in:
parent
470e057e55
commit
0401303263
|
@ -34,13 +34,11 @@ void cmSetClientData(void *info, void *cd)
|
||||||
|
|
||||||
unsigned int cmGetCacheMajorVersion(void *arg)
|
unsigned int cmGetCacheMajorVersion(void *arg)
|
||||||
{
|
{
|
||||||
cmMakefile *mf = static_cast<cmMakefile *>(arg);
|
return cmMakefile::GetCacheMajorVersion();
|
||||||
return mf->GetCacheMajorVersion();
|
|
||||||
}
|
}
|
||||||
unsigned int cmGetCacheMinorVersion(void *arg)
|
unsigned int cmGetCacheMinorVersion(void *arg)
|
||||||
{
|
{
|
||||||
cmMakefile *mf = static_cast<cmMakefile *>(arg);
|
return cmMakefile::GetCacheMinorVersion();
|
||||||
return mf->GetCacheMinorVersion();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int cmGetMajorVersion(void *)
|
unsigned int cmGetMajorVersion(void *)
|
||||||
|
|
Loading…
Reference in New Issue