X-Git-Url: https://git.llucax.com/software/posixx.git/blobdiff_plain/5cc37d5e30b015c36f850c0d49a7da35c925c321..d22d22101e7dda5da951a76408ec32708072849e:/src/buffer.hpp diff --git a/src/buffer.hpp b/src/buffer.hpp index 8613d23..b3b8c11 100644 --- a/src/buffer.hpp +++ b/src/buffer.hpp @@ -3,12 +3,10 @@ #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