Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
composable_kernel
Commits
f629397b
Commit
f629397b
authored
Sep 12, 2022
by
Po-Yen, Chen
Browse files
Fix ambiguous ctor call
parent
12aacfe9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
include/ck/utility/span.hpp
include/ck/utility/span.hpp
+1
-1
No files found.
include/ck/utility/span.hpp
View file @
f629397b
...
...
@@ -24,7 +24,7 @@ class span
using
iterator
=
pointer
;
using
const_iterator
=
pointer
;
constexpr
span
()
:
span
(
nullptr
,
0
)
{}
constexpr
span
()
:
span
(
nullptr
,
size_type
{
0
}
)
{}
constexpr
span
(
pointer
first
,
size_type
count
)
:
ptr_
(
first
),
size_
(
count
)
{}
...
...
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