[clang-tidy] remove redundant access specifiers

Found with readability-redundant-access-specifiers

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2020-03-17 20:44:15 -07:00 committed by Max Kellermann
parent 61b5ab2663
commit d2115e908a
3 changed files with 0 additions and 3 deletions

View File

@ -70,7 +70,6 @@ private:
void Cancel() noexcept override;
private:
[[nodiscard]] gcc_pure
ALint GetSourceI(ALenum param) const noexcept {
ALint value;

View File

@ -87,7 +87,6 @@ private:
size_t Play(const void *chunk, size_t size) override;
private:
[[nodiscard]] gcc_pure
bool HasDynamicPath() const noexcept {
return !format_path.empty();

View File

@ -60,7 +60,6 @@ public:
std::unique_ptr<CueParser> parser;
public:
std::unique_ptr<DetachedSong> NextSong() override;
};