Fix unused variable warnings

This commit is contained in:
Vinnie Falco
2017-06-22 10:27:45 -07:00
parent 58c976ea73
commit 8f4e7fd0a0
25 changed files with 54 additions and 51 deletions

View File

@@ -346,6 +346,8 @@ void
file_body::writer::
init(boost::optional<std::uint64_t> const& content_length, beast::error_code& ec)
{
boost::ignore_unused(content_length);
// Attempt to open the file for writing
file_ = fopen(path_.string().c_str(), "wb");