From 5a82673089b04c7f402c3e2d4b25971e19b0e2ad Mon Sep 17 00:00:00 2001 From: Richard Hodges Date: Fri, 28 Feb 2020 11:27:19 +0100 Subject: [PATCH] Add missing include --- CHANGELOG.md | 1 + include/boost/beast/core/detail/sha1.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c490bfea..50d2dfd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ Version 286: * Refactor static_buffer * Refactor flat_buffer * Refactor flat_static_buffer +* Fix missing include in sha1.hpp API Changes: diff --git a/include/boost/beast/core/detail/sha1.hpp b/include/boost/beast/core/detail/sha1.hpp index c4c8d5e3..26612d0d 100644 --- a/include/boost/beast/core/detail/sha1.hpp +++ b/include/boost/beast/core/detail/sha1.hpp @@ -12,6 +12,7 @@ #include #include +#include // Based on https://github.com/vog/sha1 /*