0003-Add-missing-cstdint-header-include-1142.patch 737 B

1234567891011121314151617181920212223
  1. From dabe9fcd3eaaa6b0b8723369b2565778341630c0 Mon Sep 17 00:00:00 2001
  2. From: a-andre <13609565+a-andre@users.noreply.github.com>
  3. Date: Thu, 29 Jun 2023 16:34:11 +0200
  4. Subject: [PATCH] Add missing cstdint header include (#1142)
  5. Upstream: https://github.com/pistacheio/pistache/commit/dabe9fcd3eaaa6b0b8723369b2565778341630c0
  6. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  7. ---
  8. include/pistache/flags.h | 1 +
  9. 1 file changed, 1 insertion(+)
  10. diff --git a/include/pistache/flags.h b/include/pistache/flags.h
  11. index 9be2b32bb..6adcc74bc 100644
  12. --- a/include/pistache/flags.h
  13. +++ b/include/pistache/flags.h
  14. @@ -13,6 +13,7 @@
  15. #pragma once
  16. #include <climits>
  17. +#include <cstdint>
  18. #include <iostream>
  19. #include <type_traits>