diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2019-07-30 14:03:58 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-07-30 14:04:40 (GMT) |
commit | 89dc04af1d55a343a44e7c2de4bb92a101dd6138 (patch) | |
tree | cca1cc420cf20f0e3036e8cd461f43730bc17377 /Source/cmParseArgumentsCommand.cxx | |
parent | f799ff43d564fd185e56b3213616da10eb92c11c (diff) | |
parent | f71f7ce3f06a08ecf04ebc646537ab9de583cdc2 (diff) | |
download | CMake-89dc04af1d55a343a44e7c2de4bb92a101dd6138.zip CMake-89dc04af1d55a343a44e7c2de4bb92a101dd6138.tar.gz CMake-89dc04af1d55a343a44e7c2de4bb92a101dd6138.tar.bz2 |
Merge topic 'cmStringAlgorithms'
f71f7ce3f0 cmStringAlgorithms: Move string functions to the new cmStringAlgorithms.h
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3618
Diffstat (limited to 'Source/cmParseArgumentsCommand.cxx')
-rw-r--r-- | Source/cmParseArgumentsCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmParseArgumentsCommand.cxx b/Source/cmParseArgumentsCommand.cxx index 0f8aef7..04fa0fb 100644 --- a/Source/cmParseArgumentsCommand.cxx +++ b/Source/cmParseArgumentsCommand.cxx @@ -7,11 +7,11 @@ #include <sstream> #include <utility> -#include "cmAlgorithms.h" #include "cmArgumentParser.h" #include "cmMakefile.h" #include "cmMessageType.h" #include "cmRange.h" +#include "cmStringAlgorithms.h" #include "cmSystemTools.h" #include "cm_string_view.hxx" |