diff options
author | Max Kellermann <max@duempel.org> | 2013-07-31 00:34:22 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-31 00:34:22 +0200 |
commit | cbd38327e7f6948647768227ac4836f64e5ccd51 (patch) | |
tree | 03510bbcb68e22a76d261089c97a851a0e6596c3 /src/DecoderAPI.hxx | |
parent | 06f898cc1240a29b293de0e97ad95a4fdc971254 (diff) | |
download | mpd-cbd38327e7f6948647768227ac4836f64e5ccd51.tar.gz mpd-cbd38327e7f6948647768227ac4836f64e5ccd51.tar.xz mpd-cbd38327e7f6948647768227ac4836f64e5ccd51.zip |
DecoderAPI: pass rvalue reference to decoder_tag()
Avoid duplicating the tag.
Diffstat (limited to 'src/DecoderAPI.hxx')
-rw-r--r-- | src/DecoderAPI.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/DecoderAPI.hxx b/src/DecoderAPI.hxx index d4886d062..c70365bff 100644 --- a/src/DecoderAPI.hxx +++ b/src/DecoderAPI.hxx @@ -141,8 +141,7 @@ decoder_data(struct decoder *decoder, struct input_stream *is, * command pending */ enum decoder_command -decoder_tag(struct decoder *decoder, struct input_stream *is, - const Tag *tag); +decoder_tag(struct decoder *decoder, struct input_stream *is, Tag &&tag); /** * Set replay gain values for the following chunks. |