-
-
Notifications
You must be signed in to change notification settings - Fork 34.2k
sqlite: make SQLTagStore.prototype.size a getter
#60246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sqlite: make SQLTagStore.prototype.size a getter
#60246
Conversation
|
Review requested:
|
cjihrig
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but all of the stylistic changes should really be made separately.
dabca78 to
3142319
Compare
I'm already half-addressing them de facto with the main change, but these can be spun out if desired. Edit: Spun out the other doc changes. |
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #60246 +/- ##
==========================================
+ Coverage 88.04% 88.56% +0.51%
==========================================
Files 703 703
Lines 208260 208259 -1
Branches 40068 40160 +92
==========================================
+ Hits 183360 184438 +1078
+ Misses 16840 15841 -999
+ Partials 8060 7980 -80
🚀 New features to boost your workflow:
|
ff66727 to
a2eaaa0
Compare
a2eaaa0 to
a217a01
Compare
Drive-by: make callback `args` parameter names consistent
a217a01 to
4a16146
Compare
|
Rebased for merge conflict. |
cjihrig
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All of the info to args renaming makes the diff more involved than it should be for this PR.
This comment was marked as outdated.
This comment was marked as outdated.
|
Landed in a1f421f |
As implemented,
.dband.capacityare getters, and.sizeis a callable method. There's no reason for this inconsistency, so change.sizeto a getter.Drive-by changes while making alterations to the class template: the
FunctionCallbackInfoparameter for SQLTagStore member functions was variably labelledargsorinfo, and wasn't consistent with the header either. Use the canonicalargs.