Commit 1c306957 authored by knowledge4igor's avatar knowledge4igor

Code style fix: add override specifier

parent 95d49204
......@@ -630,7 +630,7 @@ namespace Private {
: Step(request)
{ }
State apply(StreamCursor& cursor);
State apply(StreamCursor& cursor) override;
};
class ResponseLineStep : public Step {
......@@ -639,7 +639,7 @@ namespace Private {
: Step(response)
{ }
State apply(StreamCursor& cursor);
State apply(StreamCursor& cursor) override;
};
class HeadersStep : public Step {
......@@ -648,7 +648,7 @@ namespace Private {
: Step(request)
{ }
State apply(StreamCursor& cursor);
State apply(StreamCursor& cursor) override;
};
class BodyStep : public Step {
......@@ -659,7 +659,7 @@ namespace Private {
, bytesRead(0)
{ }
State apply(StreamCursor& cursor);
State apply(StreamCursor& cursor) override;
private:
struct Chunk {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment