1From eaa70a289288db1e8d90a2a9bcde435a8975fe74 Mon Sep 17 00:00:00 2001 2From: Sergey Lukashevich <sergey.lukashevi4@gmail.com> 3Date: Fri, 26 Jul 2019 21:58:34 +0300 4Subject: [PATCH] Broken build on Windows: "http_parser.h(66,18): error C2039: 5 'runtime_error': is not a member of 'std'" 6 7Add missing <stdexcept> include. 8 9[Retrieved from: 10https://github.com/darrenjs/wampcc/commit/eaa70a289288db1e8d90a2a9bcde435a8975fe74] 11Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> 12--- 13 include/wampcc/http_parser.h | 1 + 14 1 file changed, 1 insertion(+) 15 16diff --git a/include/wampcc/http_parser.h b/include/wampcc/http_parser.h 17index a9405dd..4c20417 100644 18--- a/include/wampcc/http_parser.h 19+++ b/include/wampcc/http_parser.h 20@@ -11,6 +11,7 @@ 21 #include <map> 22 #include <string> 23 #include <memory> 24+#include <stdexcept> 25 26 // types brought in from nodejs http-parser project 27 struct http_parser; 28