diff options
| author | nicole mazzuca <mazzucan@outlook.com> | 2020-05-29 14:09:03 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-29 14:09:03 -0700 |
| commit | 09319cd79e3bee6a41bb76db739aef3f3644f19f (patch) | |
| tree | 36e6b5bd5c17268edc062aa9c462f47fc4f400cf /toolsrc/include/pch.h | |
| parent | a64dc07690bc8806e717e190f62eb58e198b599c (diff) | |
| download | vcpkg-09319cd79e3bee6a41bb76db739aef3f3644f19f.tar.gz vcpkg-09319cd79e3bee6a41bb76db739aef3f3644f19f.zip | |
[vcpkg metrics] Allow someone to opt out after build (#11542)
* [vcpkg metrics] start using json library
Additionally, add floats to the JSON library since they're required.
* [vcpkg metrics] allow users to disable metrics after the build
Additionally, as a drive by, fix UUID generation
* fix metrics data
* code review
Diffstat (limited to 'toolsrc/include/pch.h')
| -rw-r--r-- | toolsrc/include/pch.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/toolsrc/include/pch.h b/toolsrc/include/pch.h index e23230f6e..46ba6fa37 100644 --- a/toolsrc/include/pch.h +++ b/toolsrc/include/pch.h @@ -9,6 +9,12 @@ #include <winhttp.h> #endif +#include <math.h> +#include <stdarg.h> +#include <stddef.h> +#include <stdint.h> +#include <string.h> + #include <algorithm> #include <array> #include <atomic> @@ -16,10 +22,6 @@ #include <cctype> #include <chrono> #include <codecvt> -#include <cstdarg> -#include <cstddef> -#include <cstdint> -#include <cstring> #if VCPKG_USE_STD_FILESYSTEM #include <filesystem> |
