mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-26 06:37:20 +02:00
[clang-tidy] Use default to initialize constructors
Found with modernize-use-equals-default Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
897759e4dc
commit
bf40ea8816
3 changed files with 4 additions and 29 deletions
|
@ -50,9 +50,7 @@ Lexer::Lexer (const std::string& text)
|
|||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
Lexer::~Lexer ()
|
||||
{
|
||||
}
|
||||
Lexer::~Lexer () = default;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// When a Lexer object is constructed with a string, this method walks through
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue