0001-scanner-Fix-compiler-error-missing-stdexcept-to-use-.patch 669 B

12345678910111213141516171819202122232425262728
  1. From 85b61589b0c73f6c6974862af678ed2f82806ac5 Mon Sep 17 00:00:00 2001
  2. From: Bernd Kuhls <bernd.kuhls@t-online.de>
  3. Date: Thu, 9 Aug 2018 21:44:46 +0200
  4. Subject: [PATCH] [scanner] Fix compiler error: missing <stdexcept> to use
  5. std::runtime_error
  6. Patch sent upstream as PR 50.
  7. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
  8. ---
  9. scanner/scanner.cpp | 1 +
  10. 1 file changed, 1 insertion(+)
  11. diff --git a/scanner/scanner.cpp b/scanner/scanner.cpp
  12. index 9c97b7c..7019e0a 100644
  13. --- a/scanner/scanner.cpp
  14. +++ b/scanner/scanner.cpp
  15. @@ -22,6 +22,7 @@
  16. #include <sstream>
  17. #include <cctype>
  18. #include <cmath>
  19. +#include <stdexcept>
  20. #include "pugixml.hpp"
  21. --
  22. 2.18.0