LibSQL: Use compiler generated default functions

Problem:
- Clang ToT generates warnings due to user-declared functions causing
  the implicitly generated assignment operator to not be generated.

Solution:
- Declare the default constructor `= default`.
- Remove the default copy constructor declaration.
This commit is contained in:
Lenny Maiorani 2021-08-03 12:36:58 -06:00 committed by Andreas Kling
commit da10ad3f0d
Notes: sideshowbarker 2024-07-18 07:23:07 +09:00
2 changed files with 1 additions and 7 deletions

View file

@ -9,11 +9,6 @@
namespace SQL {
Key::Key()
: Tuple()
{
}
Key::Key(TupleDescriptor const& descriptor)
: Tuple(descriptor)
{