From aa030950bb798475bdd5a069802ee0aa8f874da9 Mon Sep 17 00:00:00 2001 From: Addy Date: Thu, 21 Dec 2017 14:49:57 -0500 Subject: [PATCH] removed unused variable; --- server_http.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server_http.hpp b/server_http.hpp index 85d7573..60cd760 100644 --- a/server_http.hpp +++ b/server_http.hpp @@ -470,7 +470,7 @@ namespace SimpleWeb { try { content_length = stoull(header_it->second); } - catch(const std::exception &e) { + catch(const std::exception &) { if(this->on_error) this->on_error(session->request, make_error_code::make_error_code(errc::protocol_error)); return;