Conversation
|
REQUEST FOR PRODUCTION RELEASES: This will add The following labels are available |
| return this->desc_hash == _desc_hash; | ||
| } | ||
|
|
||
| constexpr ~TableRef() = default; |
There was a problem hiding this comment.
This is a trivial struct that does not require a destructor. Since it contains three integers, for which move and copy identical, there is no need to declare everything else as well.
| } | ||
|
|
||
| ColumnIterator() = default; | ||
| ~ColumnIterator() = default; |
There was a problem hiding this comment.
Again, the destructor only makes sense for the things that own dynamically allocated memory directly, especially if there is a polymorphic hierarchy. This class only contains observer pointers, so there is really no need for the move constructors either.
|
I am not sure this is a good idea. Have you checked with bloaty this change does not add to the already large number of symbols we have? Is this trying to solve an actual problem or you simply want to have the linter happy? |
I haven't but I'm happy to check if you point me to instructions.
Both.
|
|
This PR did not have any update in the last 30 days. Is it still needed? Unless further action in will be closed in 5 days. |
noexcept.TableIteratornot defined as it cannot be defaulted.