X-Git-Url: https://git.llucax.com/software/posixx.git/blobdiff_plain/5cc37d5e30b015c36f850c0d49a7da35c925c321..e514b4a40cc23667d1889424350c9819f78e48de:/src/buffer.hpp diff --git a/src/buffer.hpp b/src/buffer.hpp index 8613d23..af189c5 100644 --- a/src/buffer.hpp +++ b/src/buffer.hpp @@ -1,14 +1,18 @@ +// Copyright Leandro Lucarella 2008 - 2010. +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file COPYING or copy at +// http://www.boost.org/LICENSE_1_0.txt) + + #ifndef POSIXX_BUFFER_HPP_ #define POSIXX_BUFFER_HPP_ #include "basic_buffer.hpp" // posixx::basic_buffer -#include // std::realloc() - namespace posixx { /// A buffer that uses realloc(3) for memory management. -typedef basic_buffer< &std::realloc > buffer; +typedef basic_buffer< unsigned char > buffer; } // namespace posixx