SongFilter: convert "tag" to "unsigned"

Having this as one-byte integer actually adds overhead and saves no
memory due to padding.
This commit is contained in:
Max Kellermann 2018-07-21 07:04:01 +02:00
parent 42d41647b5
commit 34dbd03be1

View File

@ -27,8 +27,6 @@
#include <list>
#include <chrono>
#include <stdint.h>
/**
* Limit the search to files within the given directory.
*/
@ -52,7 +50,7 @@ class DetachedSong;
class SongFilter {
public:
class Item {
uint8_t tag;
unsigned tag;
std::string value;