mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
CLI2: Added A::A default ctor
This commit is contained in:
parent
d1e7537e76
commit
370df8e07f
2 changed files with 1 additions and 4 deletions
|
@ -44,14 +44,13 @@ int CLI2::minimumMatchLength = 3;
|
||||||
// Alias expansion limit. Any more indicates some kind of error.
|
// Alias expansion limit. Any more indicates some kind of error.
|
||||||
static int safetyValveDefault = 10;
|
static int safetyValveDefault = 10;
|
||||||
|
|
||||||
/*
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
A2::A2 ()
|
A2::A2 ()
|
||||||
: _name ("")
|
: _name ("")
|
||||||
, _lextype (Lexer::Type::word)
|
, _lextype (Lexer::Type::word)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
A2::A2 (const std::string& name, const std::string& raw, Lexer::Type lextype)
|
A2::A2 (const std::string& name, const std::string& raw, Lexer::Type lextype)
|
||||||
{
|
{
|
||||||
|
|
|
@ -38,9 +38,7 @@
|
||||||
class A2
|
class A2
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/*
|
|
||||||
A2 ();
|
A2 ();
|
||||||
*/
|
|
||||||
A2 (const std::string&, const std::string&, Lexer::Type);
|
A2 (const std::string&, const std::string&, Lexer::Type);
|
||||||
/*
|
/*
|
||||||
A2 (const std::string&, const int);
|
A2 (const std::string&, const int);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue