From 8b5b8335e652d9c85bbad5095ce200407ee9bee1 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Thu, 29 Jun 2017 15:05:29 -0700 Subject: [PATCH] Fix extra ; warning --- CHANGELOG.md | 6 ++++++ include/beast/http/basic_parser.hpp | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1485bec..e2e21590 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +Version 71: + +* Fix extra ; warning + +-------------------------------------------------------------------------------- + Version 70: * Serialize in one step when possible diff --git a/include/beast/http/basic_parser.hpp b/include/beast/http/basic_parser.hpp index efe9ef6c..46303c17 100644 --- a/include/beast/http/basic_parser.hpp +++ b/include/beast/http/basic_parser.hpp @@ -148,7 +148,7 @@ public: ~basic_parser() = default; /// Default constructor - basic_parser();; + basic_parser(); /** Move constructor