diff options
author | Brad King <brad.king@kitware.com> | 2020-10-14 16:06:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-10-14 16:06:50 (GMT) |
commit | f1fdd15863150fe42e99a95362a4387333502262 (patch) | |
tree | af1dcee0256ce0cfea26b03543fdf4c0634b3268 /Source/CPack/cpack.cxx | |
parent | 3cc3d42aba879fff5e85b363ae8f21386a3f9f9b (diff) | |
download | CMake-f1fdd15863150fe42e99a95362a4387333502262.zip CMake-f1fdd15863150fe42e99a95362a4387333502262.tar.gz CMake-f1fdd15863150fe42e99a95362a4387333502262.tar.bz2 |
clang-format: Fix include block order in ctest.cxx and cpack.cxx
Diffstat (limited to 'Source/CPack/cpack.cxx')
-rw-r--r-- | Source/CPack/cpack.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/CPack/cpack.cxx b/Source/CPack/cpack.cxx index 3a400b7..76e19dc 100644 --- a/Source/CPack/cpack.cxx +++ b/Source/CPack/cpack.cxx @@ -1,6 +1,15 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. */ +#include <cstddef> +#include <iostream> +#include <map> +#include <memory> +#include <sstream> +#include <string> +#include <utility> +#include <vector> + #include "cmsys/CommandLineArguments.hxx" #include "cmsys/Encoding.hxx" @@ -22,15 +31,6 @@ # include "cmsys/ConsoleBuf.hxx" #endif -#include <cstddef> -#include <iostream> -#include <map> -#include <memory> -#include <sstream> -#include <string> -#include <utility> -#include <vector> - namespace { const char* cmDocumentationName[][2] = { { nullptr, " cpack - Packaging driver provided by CMake." }, |