Sub in std::array for boost::array and beast::FixedArray

This commit is contained in:
Howard Hinnant
2014-04-03 14:02:26 -04:00
parent 2ab7cfbf30
commit fd9206584f
5 changed files with 2 additions and 212 deletions

View File

@@ -21,6 +21,7 @@
#define BEAST_ASIO_BASICS_FIXEDINPUTBUFFER_H_INCLUDED
#include "../../../beast/asio/buffer_sequence.h"
#include <array>
namespace beast {
namespace asio {
@@ -191,7 +192,7 @@ public:
}
private:
boost::array <std::uint8_t, Bytes> m_storage;
std::array <std::uint8_t, Bytes> m_storage;
boost::asio::mutable_buffer m_buffer;
};