summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorMatthias Maennich <matthias@maennich.net>2017-09-19 13:57:08 (GMT)
committerBrad King <brad.king@kitware.com>2017-09-28 11:23:41 (GMT)
commitb128f8c5bc02f716c700d4560b949b05afdcb659 (patch)
tree5c1bad7f18ccaeccf5c7daad2056c888df9cbcd1 /Source/cmSystemTools.cxx
parentbb0ad1bea81f60cbbb2c66c2c0ab24ee12db0026 (diff)
downloadCMake-b128f8c5bc02f716c700d4560b949b05afdcb659.zip
CMake-b128f8c5bc02f716c700d4560b949b05afdcb659.tar.gz
CMake-b128f8c5bc02f716c700d4560b949b05afdcb659.tar.bz2
Clean up some C-Style casts
Fix issues diagnosed by clang-tidy [google-readability-casting] Signed-off-by: Matthias Maennich <matthias@maennich.net>
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 4fd10a4..6fdfd44 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -2065,7 +2065,7 @@ void cmSystemTools::FindCMakeResources(const char* argv0)
#undef CM_EXE_PATH_LOCAL_SIZE
char* exe_path = exe_path_local;
if (_NSGetExecutablePath(exe_path, &exe_path_size) < 0) {
- exe_path = (char*)malloc(exe_path_size);
+ exe_path = static_cast<char*>(malloc(exe_path_size));
_NSGetExecutablePath(exe_path, &exe_path_size);
}
exe_dir =