mirror of
https://github.com/boostorg/coroutine.git
synced 2026-01-26 18:33:02 +00:00
coroutine: fix memset() typo, add Licence and Copyright
[SVN r81767]
This commit is contained in:
@@ -1,9 +1,3 @@
|
||||
|
||||
// Copyright Oliver Kowalke 2009.
|
||||
// Distributed under the Boost Software License, Version 1.0.
|
||||
// (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#define NOMINMAX
|
||||
|
||||
#include <cstdlib>
|
||||
@@ -38,7 +32,7 @@ private:
|
||||
|
||||
int fetch_()
|
||||
{
|
||||
std::streamsize num = (std::min)(
|
||||
std::streamsize num = std::min(
|
||||
static_cast< std::streamsize >( gptr() - eback() ), pb_size);
|
||||
|
||||
std::memmove(
|
||||
|
||||
Reference in New Issue
Block a user