mpdpp: make all consumers take values, not rvalue references

This commit is contained in:
Andrzej Rybczak
2013-05-17 14:02:31 +02:00
parent e5e6de8d31
commit 2f9ab8f267
16 changed files with 38 additions and 50 deletions

View File

@@ -91,7 +91,7 @@ private:
unsigned m_idx;
};
void replaceTag(mpd_tag_type tag_type, std::string &&orig_value,
void replaceTag(mpd_tag_type tag_type, std::string orig_value,
const std::string &value, unsigned idx);
template <typename F>