2
1

0001-fix-add-missing-algorithm-header-include-380.patch 882 B

123456789101112131415161718192021222324252627282930
  1. From f50e4676fe9289eec0744efae2216aa8795fa461 Mon Sep 17 00:00:00 2001
  2. From: Alfred Wingate <parona@protonmail.com>
  3. Date: Thu, 16 Nov 2023 21:26:42 +0000
  4. Subject: [PATCH] fix: add missing algorithm header include (#380)
  5. * https://gcc.gnu.org/gcc-14/porting_to.html
  6. Using gcc 14 uncovers a missing include in Message.h
  7. Signed-off-by: Alfred Wingate <parona@protonmail.com>
  8. Upstream: https://github.com/Kistler-Group/sdbus-cpp/commit/f50e4676fe9289eec0744efae2216aa8795fa461
  9. ---
  10. include/sdbus-c++/Message.h | 1 +
  11. 1 file changed, 1 insertion(+)
  12. diff --git a/include/sdbus-c++/Message.h b/include/sdbus-c++/Message.h
  13. index 915a071..9c85c01 100644
  14. --- a/include/sdbus-c++/Message.h
  15. +++ b/include/sdbus-c++/Message.h
  16. @@ -42,6 +42,7 @@
  17. #include <cassert>
  18. #include <functional>
  19. #include <sys/types.h>
  20. +#include <algorithm>
  21. // Forward declarations
  22. namespace sdbus {
  23. --
  24. 2.48.1