mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
core: port tag-list to C++
Also adds a new test, which tests merging of two tag-lists. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
640ecb345b
commit
f18acf6fb9
25 changed files with 195 additions and 227 deletions
|
@ -261,7 +261,7 @@ static void parse_dive_tags(char *, struct git_parser_state *state)
|
|||
{
|
||||
for (const std::string &tag: state->converted_strings) {
|
||||
if (!tag.empty())
|
||||
taglist_add_tag(&state->active_dive->tag_list, tag.c_str());
|
||||
taglist_add_tag(state->active_dive->tags, tag.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue