diff options
Diffstat (limited to '')
-rw-r--r-- | test/dump_rva2.cxx | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/test/dump_rva2.cxx b/test/dump_rva2.cxx index c849f6a89..9dbb018d6 100644 --- a/test/dump_rva2.cxx +++ b/test/dump_rva2.cxx @@ -22,7 +22,7 @@ #include "TagRva2.hxx" #include "replay_gain_info.h" #include "conf.h" -#include "tag.h" +#include "Tag.hxx" #include <id3tag.h> @@ -41,23 +41,13 @@ config_get_string(gcc_unused enum ConfigOption option, return default_value; } -struct tag * -tag_new(void) -{ - return NULL; -} - void -tag_add_item_n(gcc_unused struct tag *tag, gcc_unused enum tag_type type, - gcc_unused const char *value, gcc_unused size_t len) +Tag::AddItem(gcc_unused enum tag_type type, + gcc_unused const char *value) { } -void -tag_free(struct tag *tag) -{ - g_free(tag); -} +Tag::~Tag() {} int main(int argc, char **argv) { |