0001-Form-add-missing-std-vector-include.patch 979 B

123456789101112131415161718192021222324252627282930313233343536
  1. From 156507c6e85ad05256ccba06a710d47d34cd8153 Mon Sep 17 00:00:00 2001
  2. From: Peter Seiderer <ps.report@gmx.net>
  3. Date: Fri, 5 May 2017 22:21:19 +0200
  4. Subject: [PATCH] Form: add missing std::vector include
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. Fixes:
  9. ../../poppler/Form.h:544:14: error: ‘vector’ in namespace ‘std’ does not name a template type
  10. const std::vector<Ref> &getCalculateOrder() const { return calculateOrder; }
  11. ../../poppler/Form.h:556:8: error: ‘vector’ in namespace ‘std’ does not name a template type
  12. std::vector<Ref> calculateOrder;
  13. Signed-off-by: Peter Seiderer <ps.report@gmx.net>
  14. ---
  15. poppler/Form.h | 1 +
  16. 1 file changed, 1 insertion(+)
  17. diff --git a/poppler/Form.h b/poppler/Form.h
  18. index 8ddb6fe..e0a3a28 100644
  19. --- a/poppler/Form.h
  20. +++ b/poppler/Form.h
  21. @@ -27,6 +27,7 @@
  22. #include "Annot.h"
  23. #include <set>
  24. +#include <vector>
  25. class GooString;
  26. class Array;
  27. --
  28. 2.11.0