diff options
author | Brad King <brad.king@kitware.com> | 2021-12-01 17:30:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-12-01 17:40:03 (GMT) |
commit | 5596cba7dcb06b0641d4a5499fc046cf0959464e (patch) | |
tree | 6dab0a77dc012b63fcd4a05a57c3d84110363aed | |
parent | 55c4f54e48638528cad6803b1e09bda62aaa0a0a (diff) | |
download | CMake-5596cba7dcb06b0641d4a5499fc046cf0959464e.zip CMake-5596cba7dcb06b0641d4a5499fc046cf0959464e.tar.gz CMake-5596cba7dcb06b0641d4a5499fc046cf0959464e.tar.bz2 |
cmSystemTools: Remove unnecessary mark-as-used casts to void
The `CheckRPath` arguments are always used now.
-rw-r--r-- | Source/cmSystemTools.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 75a5a8d..6320be8 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -3252,8 +3252,6 @@ bool cmSystemTools::CheckRPath(std::string const& file, return false; } #endif - (void)file; - (void)newRPath; return false; } |