diff options
author | Brad King <brad.king@kitware.com> | 2020-03-04 13:00:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-03-04 13:00:24 (GMT) |
commit | 9e6b07f5ffb5aed4d6bfb9b04cd18631375f51a7 (patch) | |
tree | 8ad87f5fb9db404a5d1e954a88cb83326da328fc /Source/kwsys/testCommandLineArguments.cxx | |
parent | d674c3a5bc7599ad5cd974c13b655a7d36d9c5c9 (diff) | |
parent | ec33e3600ccda8f6b8c97a70b57715af331b41e6 (diff) | |
download | CMake-9e6b07f5ffb5aed4d6bfb9b04cd18631375f51a7.zip CMake-9e6b07f5ffb5aed4d6bfb9b04cd18631375f51a7.tar.gz CMake-9e6b07f5ffb5aed4d6bfb9b04cd18631375f51a7.tar.bz2 |
Merge branch 'upstream-KWSys' into update-kwsys
# By KWSys Upstream
* upstream-KWSys:
KWSys 2020-03-04 (6af2e592)
Diffstat (limited to 'Source/kwsys/testCommandLineArguments.cxx')
-rw-r--r-- | Source/kwsys/testCommandLineArguments.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/testCommandLineArguments.cxx b/Source/kwsys/testCommandLineArguments.cxx index 1778a9b..79ebe1a 100644 --- a/Source/kwsys/testCommandLineArguments.cxx +++ b/Source/kwsys/testCommandLineArguments.cxx @@ -98,7 +98,7 @@ int testCommandLineArguments(int argc, char* argv[]) std::vector<std::string> stl_strings_argument; std::string valid_stl_strings[] = { "ken", "brad", "bill", "andy" }; - typedef kwsys::CommandLineArguments argT; + using argT = kwsys::CommandLineArguments; arg.AddArgument("--some-int-variable", argT::SPACE_ARGUMENT, &some_int_variable, "Set some random int variable"); |