Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abseil-cpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
abseil-cpp
Commits
9402bd32
Commit
9402bd32
authored
Jun 29, 2023
by
Abseil Team
Committed by
Copybara-Service
Jun 29, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo
PiperOrigin-RevId: 544401753 Change-Id: Ie5bb48bb46c8c1bf41ef902242cefefd739e7c37
parent
53fbcb88
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
absl/container/internal/raw_hash_set_benchmark.cc
+1
-1
No files found.
absl/container/internal/raw_hash_set_benchmark.cc
View file @
9402bd32
...
@@ -142,7 +142,7 @@ struct string_generator {
...
@@ -142,7 +142,7 @@ struct string_generator {
template
<
class
RNG
>
template
<
class
RNG
>
std
::
string
operator
()(
RNG
&
rng
)
const
{
std
::
string
operator
()(
RNG
&
rng
)
const
{
std
::
string
res
;
std
::
string
res
;
res
.
resize
(
12
);
res
.
resize
(
size
);
std
::
uniform_int_distribution
<
uint32_t
>
printable_ascii
(
0x20
,
0x7E
);
std
::
uniform_int_distribution
<
uint32_t
>
printable_ascii
(
0x20
,
0x7E
);
std
::
generate
(
res
.
begin
(),
res
.
end
(),
[
&
]
{
return
printable_ascii
(
rng
);
});
std
::
generate
(
res
.
begin
(),
res
.
end
(),
[
&
]
{
return
printable_ascii
(
rng
);
});
return
res
;
return
res
;
...
...
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