1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-18 11:22:08 +00:00
serenity/Userland/Libraries/LibSQL
Lenny Maiorani da10ad3f0d 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.
2021-08-06 23:54:36 +02:00
..
AST LibSQL: Invent statement execution machinery and CREATE SCHEMA statement 2021-07-08 17:55:59 +04:30
BTree.cpp
BTree.h
BTreeIterator.cpp
CMakeLists.txt LibSQL+SQLServer: Build SQLServer system service 2021-07-08 17:55:59 +04:30
Database.cpp LibSQL: Invent statement execution machinery and CREATE SCHEMA statement 2021-07-08 17:55:59 +04:30
Database.h
Forward.h LibSQL: Move Order and Nulls enums from SQL::AST to SQL namespace 2021-07-08 17:55:59 +04:30
HashIndex.cpp
HashIndex.h
Heap.cpp
Heap.h
Index.cpp
Index.h
Key.cpp LibSQL: Use compiler generated default functions 2021-08-06 23:54:36 +02:00
Key.h LibSQL: Use compiler generated default functions 2021-08-06 23:54:36 +02:00
Meta.cpp LibSQL: Move Order and Nulls enums from SQL::AST to SQL namespace 2021-07-08 17:55:59 +04:30
Meta.h LibSQL: Move Order and Nulls enums from SQL::AST to SQL namespace 2021-07-08 17:55:59 +04:30
Row.cpp
Row.h
Serialize.h
SQLClient.cpp LibSQL+SQLServer: Build SQLServer system service 2021-07-08 17:55:59 +04:30
SQLClient.h LibSQL+SQLServer: Build SQLServer system service 2021-07-08 17:55:59 +04:30
SQLResult.h LibSQL+SQLServer: Build SQLServer system service 2021-07-08 17:55:59 +04:30
TreeNode.cpp LibSQL: BTree index, Heap, and Meta objects for SQL Storage layer 2021-06-19 22:06:45 +02:00
Tuple.cpp LibSQL: Move Order and Nulls enums from SQL::AST to SQL namespace 2021-07-08 17:55:59 +04:30
Tuple.h LibSQL: Invent statement execution machinery and CREATE SCHEMA statement 2021-07-08 17:55:59 +04:30
TupleDescriptor.h LibSQL: Move Order and Nulls enums from SQL::AST to SQL namespace 2021-07-08 17:55:59 +04:30
Type.h LibSQL: Move Order and Nulls enums from SQL::AST to SQL namespace 2021-07-08 17:55:59 +04:30
Value.cpp
Value.h