Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bedtools2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
R3
legacy
bedtools2
Commits
21001ab1
Commit
21001ab1
authored
13 years ago
by
Aaron
Browse files
Options
Downloads
Patches
Plain Diff
Update BamTools to avoid C++11 complications
parent
f8395dcc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/utils/BamTools/src/api/internal/io/HttpHeader_p.cpp
+3
-3
3 additions, 3 deletions
src/utils/BamTools/src/api/internal/io/HttpHeader_p.cpp
with
3 additions
and
3 deletions
src/utils/BamTools/src/api/internal/io/HttpHeader_p.cpp
+
3
−
3
View file @
21001ab1
...
...
@@ -2,7 +2,7 @@
// HttpHeader_p.cpp (c) 2011 Derek Barnett
// Marth Lab, Department of Biology, Boston College
// ---------------------------------------------------------------------------
// Last modified: 1
0 November
201
1
(DB)
// Last modified: 1
3 January
201
2
(DB)
// ---------------------------------------------------------------------------
// Provides a generic interface for parsing/generating HTTP headers, along
// with specialized request & response header types
...
...
@@ -125,9 +125,9 @@ int HttpHeader::GetMinorVersion(void) const {
return
m_minorVersion
;
}
string
HttpHeader
::
GetValue
(
const
string
&
key
)
const
{
string
HttpHeader
::
GetValue
(
const
string
&
key
)
{
if
(
ContainsKey
(
key
)
)
return
m_fields
.
at
(
key
)
;
return
m_fields
[
key
]
;
else
return
string
();
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment