mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
libhsared: migrating from local to libshared
This commit is contained in:
parent
0e56abd0f9
commit
8a43f4902d
88 changed files with 185 additions and 510 deletions
|
@ -36,8 +36,8 @@
|
|||
#include <ISO8601.h>
|
||||
#include <Lexer.h>
|
||||
#include <main.h>
|
||||
#include <text.h>
|
||||
#include <util.h>
|
||||
#include <shared.h>
|
||||
#include <format.h>
|
||||
#include <i18n.h>
|
||||
|
||||
extern Context context;
|
||||
|
@ -52,10 +52,7 @@ std::string taskIdentifiers (const std::vector <Task>& tasks)
|
|||
for (auto task: tasks)
|
||||
identifiers.push_back (task.identifier (true));
|
||||
|
||||
std::string result;
|
||||
join (result, ", ", identifiers);
|
||||
|
||||
return result;
|
||||
return join (", ", identifiers);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue