Bring AU to Au - #659
Merged
Merged
Conversation
It's about time we added the Astronomical Unit! We'll use the slightly older "AU" symbol, rather than "au", to avoid confusion with our ubiquitous namespace.
hoffbrinkle
reviewed
Feb 12, 2026
| constexpr auto astronomical_units = QuantityMaker<AstronomicalUnits>{}; | ||
|
|
||
| namespace symbols { | ||
| constexpr auto AU = SymbolFor<AstronomicalUnits>{}; |
Member
There was a problem hiding this comment.
So how much confusion would be causing if this was au (and/or the label was "au")? Given it's in the symbols namespace, it seems like it would be tractable?
Member
Author
There was a problem hiding this comment.
Surprisingly, it... works? https://godbolt.org/z/x5qzvE5fK
Feels a little like tempting fate, but I don't know... maybe we should do it?
Member
Author
There was a problem hiding this comment.
Here is an example, https://godbolt.org/z/K1j1rdsGz, courtesy of Arthur O'Dwyer on the C++ slack, which convinces me that we should avoid reusing the namespace name au as an instance name.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
It's about time we added the Astronomical Unit!
We'll use the slightly older "AU" symbol, rather than "au", to avoid
confusion with our ubiquitous namespace.