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_ROCM
Commits
09338e1f
Commit
09338e1f
authored
Sep 12, 2024
by
Jun Liu
Browse files
fix clang format issue
parent
6755dba6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
include/ck/filesystem.hpp
include/ck/filesystem.hpp
+2
-2
No files found.
include/ck/filesystem.hpp
View file @
09338e1f
...
@@ -59,12 +59,12 @@ namespace fs = ::std::experimental::filesystem;
...
@@ -59,12 +59,12 @@ namespace fs = ::std::experimental::filesystem;
inline
std
::
string
operator
+
(
const
std
::
string_view
s
,
const
CK
::
fs
::
path
&
path
)
inline
std
::
string
operator
+
(
const
std
::
string_view
s
,
const
CK
::
fs
::
path
&
path
)
{
{
return
path
.
string
().
insert
(
0
,
s
);
return
path
.
string
().
insert
(
0
,
s
);
}
}
inline
std
::
string
operator
+
(
const
CK
::
fs
::
path
&
path
,
const
std
::
string_view
s
)
inline
std
::
string
operator
+
(
const
CK
::
fs
::
path
&
path
,
const
std
::
string_view
s
)
{
{
return
path
.
string
().
append
(
s
);
return
path
.
string
().
append
(
s
);
}
}
#define FS_ENUM_PERMS_ALL fs::perms::all
#define FS_ENUM_PERMS_ALL fs::perms::all
...
...
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