diff options
| author | nicole mazzuca <mazzucan@outlook.com> | 2020-07-11 21:07:51 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-11 21:07:51 -0700 |
| commit | 0523b5eb57341e44fc0551900e5803b13686821a (patch) | |
| tree | c464a61728109f64f7891ebaebfa44195b91d65d /toolsrc/src/vcpkg.cpp | |
| parent | 544f8e4593764f78faa94bac2adb81cca5232943 (diff) | |
| download | vcpkg-0523b5eb57341e44fc0551900e5803b13686821a.tar.gz vcpkg-0523b5eb57341e44fc0551900e5803b13686821a.zip | |
[vcpkg formatting] Fix format regex (#12369)
* [vcpkg formatting] correct the header regexes
* format
Diffstat (limited to 'toolsrc/src/vcpkg.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/toolsrc/src/vcpkg.cpp b/toolsrc/src/vcpkg.cpp index 003ae1024..40ccb1668 100644 --- a/toolsrc/src/vcpkg.cpp +++ b/toolsrc/src/vcpkg.cpp @@ -1,10 +1,5 @@ #include <vcpkg/base/system_headers.h> -#include <cassert> -#include <fstream> -#include <memory> -#include <random> - #include <vcpkg/base/chrono.h> #include <vcpkg/base/files.h> #include <vcpkg/base/pragmas.h> @@ -12,6 +7,7 @@ #include <vcpkg/base/system.debug.h> #include <vcpkg/base/system.print.h> #include <vcpkg/base/system.process.h> + #include <vcpkg/commands.h> #include <vcpkg/globalstate.h> #include <vcpkg/help.h> @@ -21,6 +17,11 @@ #include <vcpkg/userconfig.h> #include <vcpkg/vcpkglib.h> +#include <cassert> +#include <fstream> +#include <memory> +#include <random> + #if defined(_WIN32) #pragma comment(lib, "ole32") #pragma comment(lib, "shell32") |
