diff options
author | Brad King <brad.king@kitware.com> | 2016-11-30 18:14:52 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-11-30 18:14:52 (GMT) |
commit | d69cf34708bc0d9d737505eca14c217494604a93 (patch) | |
tree | 09561a7250ad32ee7848c35da524eb90c4ca6074 | |
parent | db3499df5d06ab2cacc61e9f7720a33456aeafe4 (diff) | |
parent | 28e891f0c7edff8dacecd7526c42e8e23e90271a (diff) | |
download | CMake-d69cf34708bc0d9d737505eca14c217494604a93.zip CMake-d69cf34708bc0d9d737505eca14c217494604a93.tar.gz CMake-d69cf34708bc0d9d737505eca14c217494604a93.tar.bz2 |
Merge branch 'cmake-server-pad-arguments' into release
-rw-r--r-- | Source/cmServerProtocol.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmServerProtocol.cxx b/Source/cmServerProtocol.cxx index d35efe0..e159c8f 100644 --- a/Source/cmServerProtocol.cxx +++ b/Source/cmServerProtocol.cxx @@ -923,7 +923,7 @@ cmServerResponse cmServerProtocol1_0::ProcessConfigure( } // Make sure the types of cacheArguments matches (if given): - std::vector<std::string> cacheArgs; + std::vector<std::string> cacheArgs = { "unused" }; bool cacheArgumentsError = false; const Json::Value passedArgs = request.Data[kCACHE_ARGUMENTS_KEY]; if (!passedArgs.isNull()) { |