0001-nfc-Fix-missing-include.patch 841 B

123456789101112131415161718192021222324
  1. From b498303066a63a203d24f739b2d2e0e56dca70d1 Mon Sep 17 00:00:00 2001
  2. From: serge-sans-paille <sguelton@redhat.com>
  3. Date: Tue, 10 Nov 2020 14:55:25 +0100
  4. Subject: [PATCH] [nfc] Fix missing include
  5. [Retrieved (and backported) from:
  6. https://github.com/llvm/llvm-project/commit/b498303066a63a203d24f739b2d2e0e56dca70d1]
  7. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  8. ---
  9. llvm/utils/benchmark/src/benchmark_register.h | 1 +
  10. 1 file changed, 1 insertion(+)
  11. diff --git a/utils/benchmark/src/benchmark_register.h b/utils/benchmark/src/benchmark_register.h
  12. index 0705e219f2fa2..4caa5ad4da079 100644
  13. --- a/utils/benchmark/src/benchmark_register.h
  14. +++ b/utils/benchmark/src/benchmark_register.h
  15. @@ -1,6 +1,7 @@
  16. #ifndef BENCHMARK_REGISTER_H
  17. #define BENCHMARK_REGISTER_H
  18. +#include <limits>
  19. #include <vector>
  20. #include "check.h"