-
Notifications
You must be signed in to change notification settings - Fork 145
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
Cleanup #1399
Draft
Bike
wants to merge
22
commits into
main
Choose a base branch
from
cleanup
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Commits on Feb 1, 2023
-
Some of the stuff in the reader had to be changed since it used %s for characters, seemingly.
Configuration menu - View commit details
-
Copy full SHA for 6a168c2 - Browse repository at this point
Copy the full SHA 6a168c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 21efcad - Browse repository at this point
Copy the full SHA 21efcadView commit details -
Configuration menu - View commit details
-
Copy full SHA for ac1cb89 - Browse repository at this point
Copy the full SHA ac1cb89View commit details -
which means disabling a bunch of individual warnings, until I fix them up.
Configuration menu - View commit details
-
Copy full SHA for 1feaf6b - Browse repository at this point
Copy the full SHA 1feaf6bView commit details -
I don't actually totally understand how these are pessimizing; the basic case for this warning seems to be about copy elision in return values. My best guess is that it has something to do with the fact that takeError is defined to take ownership anyway, so I guess it is kind of a move operation already, and maybe returns a prvalue?
Configuration menu - View commit details
-
Copy full SHA for 3ca4561 - Browse repository at this point
Copy the full SHA 3ca4561View commit details -
I'm not totally sure how ExecuteAction works, but I'm almost entirely sure it's not supposed to hang. I copied the Base:: use in the other ExecuteAction definition.
Configuration menu - View commit details
-
Copy full SHA for 7daa946 - Browse repository at this point
Copy the full SHA 7daa946View commit details -
Configuration menu - View commit details
-
Copy full SHA for e4b8a9e - Browse repository at this point
Copy the full SHA e4b8a9eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 79d4a3e - Browse repository at this point
Copy the full SHA 79d4a3eView commit details -
Fix uninitialized memory reads
Some of these I'm not sure about, especially in the debugger. I don't think there's really a good way to write a bulletproof accessible_memory_p.
Configuration menu - View commit details
-
Copy full SHA for ebe404f - Browse repository at this point
Copy the full SHA ebe404fView commit details -
Configuration menu - View commit details
-
Copy full SHA for f9dcfad - Browse repository at this point
Copy the full SHA f9dcfadView commit details -
Configuration menu - View commit details
-
Copy full SHA for 56a14ed - Browse repository at this point
Copy the full SHA 56a14edView commit details -
The order of C++ initializer lists is not used - fields are initialized in the order they are declared in the class. This matters when an initializer relies on another initialization in the same initializer list having been completed, but in general we probably ought to keep the orders the same to avoid any confusion.
Configuration menu - View commit details
-
Copy full SHA for 1d6bd66 - Browse repository at this point
Copy the full SHA 1d6bd66View commit details -
The single dispatch miss stuff is not ready, and also I'm not entirely sure it needs its own lisp function.
Configuration menu - View commit details
-
Copy full SHA for 6e923c4 - Browse repository at this point
Copy the full SHA 6e923c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d76092 - Browse repository at this point
Copy the full SHA 6d76092View commit details -
Configuration menu - View commit details
-
Copy full SHA for fd595f9 - Browse repository at this point
Copy the full SHA fd595f9View commit details -
This code makes fmt complain because we pass it a weird enum, but really the error message was unclear anyway.
Configuration menu - View commit details
-
Copy full SHA for 1e8d00d - Browse repository at this point
Copy the full SHA 1e8d00dView commit details -
Configuration menu - View commit details
-
Copy full SHA for a8980d8 - Browse repository at this point
Copy the full SHA a8980d8View commit details -
Clean up some Mac deprecation warnings
On Macs, apparently, the underlying type of an enum is not int by default, so fmt complains if you use %d. The stream stuff I fixed up a bit since that's an ext: function and we should not be presenting users with internal codes.
Configuration menu - View commit details
-
Copy full SHA for b131ac2 - Browse repository at this point
Copy the full SHA b131ac2View commit details -
Configuration menu - View commit details
-
Copy full SHA for c0e6229 - Browse repository at this point
Copy the full SHA c0e6229View commit details -
Configuration menu - View commit details
-
Copy full SHA for 87c0a0e - Browse repository at this point
Copy the full SHA 87c0a0eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2250c5e - Browse repository at this point
Copy the full SHA 2250c5eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 29f5174 - Browse repository at this point
Copy the full SHA 29f5174View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.