Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pistache
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
pistache
Commits
1c306957
Commit
1c306957
authored
Feb 24, 2019
by
knowledge4igor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Code style fix: add override specifier
parent
95d49204
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
include/pistache/http.h
include/pistache/http.h
+4
-4
No files found.
include/pistache/http.h
View file @
1c306957
...
...
@@ -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
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment