summaryrefslogtreecommitdiff
path: root/src/protocol
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2017-05-15 23:01:49 +0200
committerMax Kellermann <max@musicpd.org>2017-05-15 23:01:49 +0200
commit4faef28cc56c3ed72a22dbd1cb317cf756217400 (patch)
treef2a3e8168ce9efada0fd0afe9971f90f0dee12b4 /src/protocol
parent89b900432e0bfb324356f6ae62a09241eb75d251 (diff)
parentb4c9d9c2a72fbf2c6c9090c73fe37fcc94dce1ca (diff)
Merge tag 'v0.20.7'
release v0.20.7
Diffstat (limited to 'src/protocol')
-rw-r--r--src/protocol/ArgParser.hxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/protocol/ArgParser.hxx b/src/protocol/ArgParser.hxx
index 135f9e74b..8a23f25a8 100644
--- a/src/protocol/ArgParser.hxx
+++ b/src/protocol/ArgParser.hxx
@@ -21,7 +21,6 @@
#define MPD_PROTOCOL_ARGPARSER_HXX
#include "check.h"
-#include "Compiler.h"
#include <limits>
@@ -30,15 +29,12 @@
class SongTime;
class SignedSongTime;
-gcc_pure
uint32_t
ParseCommandArgU32(const char *s);
-gcc_pure
int
ParseCommandArgInt(const char *s, int min_value, int max_value);
-gcc_pure
int
ParseCommandArgInt(const char *s);
@@ -55,31 +51,24 @@ struct RangeArg {
}
};
-gcc_pure
RangeArg
ParseCommandArgRange(const char *s);
-gcc_pure
unsigned
ParseCommandArgUnsigned(const char *s, unsigned max_value);
-gcc_pure
unsigned
ParseCommandArgUnsigned(const char *s);
-gcc_pure
bool
ParseCommandArgBool(const char *s);
-gcc_pure
float
ParseCommandArgFloat(const char *s);
-gcc_pure
SongTime
ParseCommandArgSongTime(const char *s);
-gcc_pure
SignedSongTime
ParseCommandArgSignedSongTime(const char *s);