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
8cf8b920
Commit
8cf8b920
authored
Dec 21, 2018
by
xurxoham
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing override to derived class virtual member functions
parent
fc16ec32
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
include/pistache/http_header.h
include/pistache/http_header.h
+9
-9
No files found.
include/pistache/http_header.h
View file @
8cf8b920
...
...
@@ -236,8 +236,8 @@ public:
:
val_
(
val
)
{
}
void
parse
(
const
std
::
string
&
data
);
void
write
(
std
::
ostream
&
os
)
const
;
void
parse
(
const
std
::
string
&
data
)
override
;
void
write
(
std
::
ostream
&
os
)
const
override
;
void
setUri
(
std
::
string
val
)
{
val_
=
std
::
move
(
val
);
...
...
@@ -264,8 +264,8 @@ public:
:
val_
(
val
)
{
}
void
parse
(
const
std
::
string
&
data
);
void
write
(
std
::
ostream
&
os
)
const
;
void
parse
(
const
std
::
string
&
data
)
override
;
void
write
(
std
::
ostream
&
os
)
const
override
;
void
setUri
(
std
::
string
val
)
{
val_
=
std
::
move
(
val
);
...
...
@@ -290,7 +290,7 @@ public:
{
}
explicit
CacheControl
(
Http
::
CacheDirective
directive
);
void
parseRaw
(
const
char
*
str
,
size_t
len
);
void
parseRaw
(
const
char
*
str
,
size_t
len
)
override
;
void
write
(
std
::
ostream
&
os
)
const
override
;
std
::
vector
<
Http
::
CacheDirective
>
directives
()
const
{
return
directives_
;
}
...
...
@@ -314,7 +314,7 @@ public:
:
control_
(
control
)
{
}
void
parseRaw
(
const
char
*
str
,
size_t
len
);
void
parseRaw
(
const
char
*
str
,
size_t
len
)
override
;
void
write
(
std
::
ostream
&
os
)
const
override
;
ConnectionControl
control
()
const
{
return
control_
;
}
...
...
@@ -330,7 +330,7 @@ public:
:
encoding_
()
{
}
void
parseRaw
(
const
char
*
str
,
size_t
len
);
void
parseRaw
(
const
char
*
str
,
size_t
len
)
override
;
void
write
(
std
::
ostream
&
os
)
const
override
;
Encoding
encoding
()
const
{
...
...
@@ -405,7 +405,7 @@ public:
:
mime_
(
mime
)
{
}
void
parseRaw
(
const
char
*
str
,
size_t
len
);
void
parseRaw
(
const
char
*
str
,
size_t
len
)
override
;
void
write
(
std
::
ostream
&
os
)
const
override
;
Mime
::
MediaType
mime
()
const
{
return
mime_
;
}
...
...
@@ -449,7 +449,7 @@ public:
:
expectation_
(
expectation
)
{
}
void
parseRaw
(
const
char
*
str
,
size_t
len
);
void
parseRaw
(
const
char
*
str
,
size_t
len
)
override
;
void
write
(
std
::
ostream
&
os
)
const
override
;
Http
::
Expectation
expectation
()
const
{
return
expectation_
;
}
...
...
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