mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-09 00:30:36 +02:00
Portability: Updated to make main re-entrant()
- New INSTALL instructions to emscripten, and AUTHORS for contribution.
This commit is contained in:
parent
cae3f06b7d
commit
7af6db4c17
112 changed files with 960 additions and 1147 deletions
|
@ -31,8 +31,6 @@
|
|||
#include <Context.h>
|
||||
#include <Command.h>
|
||||
|
||||
extern Context context;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
CmdZshAttributes::CmdZshAttributes ()
|
||||
{
|
||||
|
@ -53,7 +51,7 @@ CmdZshAttributes::CmdZshAttributes ()
|
|||
int CmdZshAttributes::execute (std::string& output)
|
||||
{
|
||||
// Get a list of all columns, sort them.
|
||||
auto columns = context.getColumns ();
|
||||
auto columns = Context::getContext ().getColumns ();
|
||||
std::sort (columns.begin (), columns.end ());
|
||||
|
||||
std::stringstream out;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue