diff options
author | Brad King <brad.king@kitware.com> | 2022-03-31 12:51:57 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-03-31 12:52:04 (GMT) |
commit | 7ae3c6740b6a2dec2807b6dce92f3c468c500bea (patch) | |
tree | 4c31c9c616cf9d76c7a47e915546dfa4496aa72e /Source | |
parent | 840fb959049f0f6532f95b599aab6289ea82981a (diff) | |
parent | 93dce4b4bf698563e4a72f4c265bda82626447a1 (diff) | |
download | CMake-7ae3c6740b6a2dec2807b6dce92f3c468c500bea.zip CMake-7ae3c6740b6a2dec2807b6dce92f3c468c500bea.tar.gz CMake-7ae3c6740b6a2dec2807b6dce92f3c468c500bea.tar.bz2 |
Merge topic 'string-JSON-error-modes'
93dce4b4bf string(JSON): fix error message on invalid mode
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: buildbot <buildbot@kitware.com>
Merge-request: !7130
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmStringCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmStringCommand.cxx b/Source/cmStringCommand.cxx index e5935b8..900854e 100644 --- a/Source/cmStringCommand.cxx +++ b/Source/cmStringCommand.cxx @@ -1106,8 +1106,8 @@ bool HandleJSONCommand(std::vector<std::string> const& arguments, mode != "EQUAL"_s) { throw json_error( { "got an invalid mode '"_s, mode, - "', expected one of GET, GET_ARRAY, TYPE, MEMBER, MEMBERS," - " LENGTH, REMOVE, SET, EQUAL"_s }); + "', expected one of GET, TYPE, MEMBER, LENGTH, REMOVE, SET, " + " EQUAL"_s }); } const auto& jsonstr = args.PopFront("missing json string argument"_s); |