Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
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
nghttp2
Commits
6f28a69b
Unverified
Commit
6f28a69b
authored
Oct 29, 2019
by
Tatsuhiro Tsujikawa
Committed by
GitHub
Oct 29, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1411 from richard78917/fix_warning
priority_spec::valid(): remove const qualifier from return value
parents
d08c4395
29042f1c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/asio_client_session.cc
src/asio_client_session.cc
+1
-1
src/includes/nghttp2/asio_http2_client.h
src/includes/nghttp2/asio_http2_client.h
+1
-1
No files found.
src/asio_client_session.cc
View file @
6f28a69b
...
@@ -154,7 +154,7 @@ const nghttp2_priority_spec *priority_spec::get() const {
...
@@ -154,7 +154,7 @@ const nghttp2_priority_spec *priority_spec::get() const {
return
&
spec_
;
return
&
spec_
;
}
}
const
bool
priority_spec
::
valid
()
const
{
return
valid_
;
}
bool
priority_spec
::
valid
()
const
{
return
valid_
;
}
}
// namespace client
}
// namespace client
}
// namespace asio_http2
}
// namespace asio_http2
...
...
src/includes/nghttp2/asio_http2_client.h
View file @
6f28a69b
...
@@ -133,7 +133,7 @@ public:
...
@@ -133,7 +133,7 @@ public:
// Indicates whether or not this spec is valid (i.e. was constructed with
// Indicates whether or not this spec is valid (i.e. was constructed with
// values).
// values).
const
bool
valid
()
const
;
bool
valid
()
const
;
private:
private:
nghttp2_priority_spec
spec_
;
nghttp2_priority_spec
spec_
;
...
...
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