Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
folly
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
folly
Commits
78f3142f
Commit
78f3142f
authored
Jun 26, 2013
by
Tom Jackson
Committed by
Sara Golemon
Jul 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
const'ing sorted_vector_map::count()
Test Plan: Use it Reviewed By: tudorb@fb.com FB internal diff: D865211
parent
423eed2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
folly/sorted_vector_types.h
folly/sorted_vector_types.h
+1
-1
No files found.
folly/sorted_vector_types.h
View file @
78f3142f
...
...
@@ -515,7 +515,7 @@ public:
return
end
();
}
size_type
count
(
const
key_type
&
key
)
{
size_type
count
(
const
key_type
&
key
)
const
{
return
find
(
key
)
==
end
()
?
0
:
1
;
}
...
...
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