diff options
author | jrp2014 <jrp2014@users.noreply.github.com> | 2018-04-03 20:59:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-04-05 17:42:49 (GMT) |
commit | 418541035f82327ff387363efebcf18de7feffc9 (patch) | |
tree | 97d911933ea7e724f2aec74abb318988bd80c64e | |
parent | 1519628e6042a09cac4733fe09850c61d8c74be1 (diff) | |
download | CMake-418541035f82327ff387363efebcf18de7feffc9.zip CMake-418541035f82327ff387363efebcf18de7feffc9.tar.gz CMake-418541035f82327ff387363efebcf18de7feffc9.tar.bz2 |
cmCTestCurl: Fix UploadFile declared parameter names
Match the order used in the definition.
-rw-r--r-- | Source/CTest/cmCTestCurl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestCurl.h b/Source/CTest/cmCTestCurl.h index 427a392..86d9489 100644 --- a/Source/CTest/cmCTestCurl.h +++ b/Source/CTest/cmCTestCurl.h @@ -16,7 +16,7 @@ class cmCTestCurl public: cmCTestCurl(cmCTest*); ~cmCTestCurl(); - bool UploadFile(std::string const& url, std::string const& file, + bool UploadFile(std::string const& local_file, std::string const& url, std::string const& fields, std::string& response); bool HttpRequest(std::string const& url, std::string const& fields, std::string& response); |