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
0a4c5edc
Commit
0a4c5edc
authored
Apr 08, 2020
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'stl' of
git://github.com/neheb/MPD
parents
79e9aff3
015cbff9
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
36 deletions
+12
-36
FileCommands.cxx
src/command/FileCommands.cxx
+1
-6
InputPlugin.cxx
src/input/InputPlugin.cxx
+2
-5
Cancellable.hxx
src/lib/nfs/Cancellable.hxx
+1
-5
MultipleOutputs.cxx
src/output/MultipleOutputs.cxx
+2
-5
MultipleOutputs.hxx
src/output/MultipleOutputs.hxx
+2
-5
AndSongFilter.cxx
src/song/AndSongFilter.cxx
+3
-5
Builder.cxx
src/tag/Builder.cxx
+1
-5
No files found.
src/command/FileCommands.cxx
View file @
0a4c5edc
...
@@ -127,12 +127,7 @@ gcc_pure
...
@@ -127,12 +127,7 @@ gcc_pure
static
bool
static
bool
IsValidValue
(
const
StringView
s
)
noexcept
IsValidValue
(
const
StringView
s
)
noexcept
{
{
for
(
const
char
ch
:
s
)
{
return
std
::
none_of
(
s
.
begin
(),
s
.
end
(),
[](
const
auto
&
ch
)
{
return
(
unsigned
char
)
ch
<
0x20
;
});
if
((
unsigned
char
)
ch
<
0x20
)
return
false
;
}
return
true
;
}
}
class
PrintCommentHandler
final
:
public
NullTagHandler
{
class
PrintCommentHandler
final
:
public
NullTagHandler
{
...
...
src/input/InputPlugin.cxx
View file @
0a4c5edc
...
@@ -33,11 +33,8 @@ InputPlugin::SupportsUri(const char *uri) const noexcept
...
@@ -33,11 +33,8 @@ InputPlugin::SupportsUri(const char *uri) const noexcept
if
(
StringStartsWithIgnoreCase
(
uri
,
*
i
))
if
(
StringStartsWithIgnoreCase
(
uri
,
*
i
))
return
true
;
return
true
;
}
else
{
}
else
{
for
(
const
auto
&
schema
:
protocols
())
{
return
std
::
any_of
(
protocols
().
begin
(),
protocols
().
end
(),
[
uri
](
const
auto
&
schema
)
if
(
StringStartsWithIgnoreCase
(
uri
,
schema
.
c_str
())){
{
return
StringStartsWithIgnoreCase
(
uri
,
schema
.
c_str
());
}
);
return
true
;
}
}
}
}
return
false
;
return
false
;
}
}
...
...
src/lib/nfs/Cancellable.hxx
View file @
0a4c5edc
...
@@ -113,11 +113,7 @@ public:
...
@@ -113,11 +113,7 @@ public:
#ifndef NDEBUG
#ifndef NDEBUG
gcc_pure
gcc_pure
bool
IsEmpty
()
const
noexcept
{
bool
IsEmpty
()
const
noexcept
{
for
(
const
auto
&
c
:
list
)
return
std
::
all_of
(
list
.
begin
(),
list
.
end
(),
[](
const
auto
&
c
)
{
return
c
.
IsCancelled
();
});
if
(
!
c
.
IsCancelled
())
return
false
;
return
true
;
}
}
#endif
#endif
...
...
src/output/MultipleOutputs.cxx
View file @
0a4c5edc
...
@@ -258,11 +258,8 @@ MultipleOutputs::Open(const AudioFormat audio_format)
...
@@ -258,11 +258,8 @@ MultipleOutputs::Open(const AudioFormat audio_format)
bool
bool
MultipleOutputs
::
IsChunkConsumed
(
const
MusicChunk
*
chunk
)
const
noexcept
MultipleOutputs
::
IsChunkConsumed
(
const
MusicChunk
*
chunk
)
const
noexcept
{
{
for
(
const
auto
&
ao
:
outputs
)
return
std
::
all_of
(
outputs
.
begin
(),
outputs
.
end
(),
[
chunk
](
const
auto
&
ao
)
{
if
(
!
ao
->
LockIsChunkConsumed
(
*
chunk
))
return
ao
->
LockIsChunkConsumed
(
*
chunk
);
});
return
false
;
return
true
;
}
}
unsigned
unsigned
...
...
src/output/MultipleOutputs.hxx
View file @
0a4c5edc
...
@@ -28,6 +28,7 @@
...
@@ -28,6 +28,7 @@
#include "Chrono.hxx"
#include "Chrono.hxx"
#include "util/Compiler.h"
#include "util/Compiler.h"
#include <algorithm>
#include <cassert>
#include <cassert>
#include <memory>
#include <memory>
#include <vector>
#include <vector>
...
@@ -106,11 +107,7 @@ public:
...
@@ -106,11 +107,7 @@ public:
*/
*/
gcc_pure
gcc_pure
bool
IsDummy
()
const
noexcept
{
bool
IsDummy
()
const
noexcept
{
for
(
const
auto
&
i
:
outputs
)
return
std
::
all_of
(
outputs
.
begin
(),
outputs
.
end
(),
[](
const
auto
&
i
)
{
return
i
->
IsDummy
();
});
if
(
!
i
->
IsDummy
())
return
false
;
return
true
;
}
}
/**
/**
...
...
src/song/AndSongFilter.cxx
View file @
0a4c5edc
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
#include "AndSongFilter.hxx"
#include "AndSongFilter.hxx"
#include <algorithm>
ISongFilterPtr
ISongFilterPtr
AndSongFilter
::
Clone
()
const
noexcept
AndSongFilter
::
Clone
()
const
noexcept
{
{
...
@@ -54,9 +56,5 @@ AndSongFilter::ToExpression() const noexcept
...
@@ -54,9 +56,5 @@ AndSongFilter::ToExpression() const noexcept
bool
bool
AndSongFilter
::
Match
(
const
LightSong
&
song
)
const
noexcept
AndSongFilter
::
Match
(
const
LightSong
&
song
)
const
noexcept
{
{
for
(
const
auto
&
i
:
items
)
return
std
::
all_of
(
items
.
begin
(),
items
.
end
(),
[
&
song
](
const
auto
&
i
)
{
return
i
->
Match
(
song
);
});
if
(
!
i
->
Match
(
song
))
return
false
;
return
true
;
}
}
src/tag/Builder.cxx
View file @
0a4c5edc
...
@@ -154,11 +154,7 @@ TagBuilder::CommitNew() noexcept
...
@@ -154,11 +154,7 @@ TagBuilder::CommitNew() noexcept
bool
bool
TagBuilder
::
HasType
(
TagType
type
)
const
noexcept
TagBuilder
::
HasType
(
TagType
type
)
const
noexcept
{
{
for
(
auto
i
:
items
)
return
std
::
any_of
(
items
.
begin
(),
items
.
end
(),
[
type
](
const
auto
&
i
)
{
return
i
->
type
==
type
;
});
if
(
i
->
type
==
type
)
return
true
;
return
false
;
}
}
void
void
...
...
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