mirror of
https://github.com/oatpp/oatpp.git
synced 2024-11-27 08:30:07 +08:00
Removed superfluous virutal
This commit is contained in:
parent
9fe78ba9f6
commit
9fb654b8fb
@ -147,7 +147,7 @@ oatpp::async::CoroutineStarter BufferOutputStream::flushToStreamAsync(const std:
|
||||
, m_stream(stream)
|
||||
{}
|
||||
|
||||
virtual Action act() override {
|
||||
Action act() override {
|
||||
if(m_inlineData.currBufferPtr == nullptr) {
|
||||
m_inlineData.currBufferPtr = m_this->m_data;
|
||||
m_inlineData.bytesLeft = m_this->m_position;
|
||||
|
@ -119,7 +119,7 @@ async::CoroutineStarter WriteCallback::writeExactSizeDataAsync(const void* data,
|
||||
, m_inlineData(data, size)
|
||||
{}
|
||||
|
||||
virtual Action act() override {
|
||||
Action act() override {
|
||||
return m_this->writeExactSizeDataAsyncInline(m_inlineData, finish());
|
||||
}
|
||||
|
||||
|
@ -165,7 +165,7 @@ oatpp::async::CoroutineStarter Request::sendAsync(std::shared_ptr<Request> _this
|
||||
, m_headersWriteBuffer(std::make_shared<oatpp::data::stream::BufferOutputStream>())
|
||||
{}
|
||||
|
||||
virtual Action act() override {
|
||||
Action act() override {
|
||||
|
||||
v_buff_size bodySize = -1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user