Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
d744ea3f
Commit
d744ea3f
authored
Dec 03, 2013
by
Denis Krjuchkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fs/Traits.hxx: simplify code
- Move definition of SEPARATOR_UTF8 out of #ifdef - Remove duplicated check in IsSeparatorUTF8
parent
07352e82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
Traits.hxx
src/fs/Traits.hxx
+3
-7
No files found.
src/fs/Traits.hxx
View file @
d744ea3f
...
...
@@ -41,12 +41,12 @@ struct PathTraits {
#ifdef WIN32
static
constexpr
value_type
SEPARATOR_FS
=
'\\'
;
static
constexpr
char
SEPARATOR_UTF8
=
'/'
;
#else
static
constexpr
value_type
SEPARATOR_FS
=
'/'
;
static
constexpr
char
SEPARATOR_UTF8
=
'/'
;
#endif
static
constexpr
char
SEPARATOR_UTF8
=
'/'
;
static
constexpr
bool
IsSeparatorFS
(
value_type
ch
)
{
return
#ifdef WIN32
...
...
@@ -56,11 +56,7 @@ struct PathTraits {
}
static
constexpr
bool
IsSeparatorUTF8
(
char
ch
)
{
return
#ifdef WIN32
ch
==
'/'
||
#endif
ch
==
SEPARATOR_UTF8
;
return
ch
==
SEPARATOR_UTF8
;
}
gcc_pure
...
...
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