-
Notifications
You must be signed in to change notification settings - Fork 205
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
Apply formatting to thrust #1616
Conversation
Mostly just grumbling, and I know it's probably too late in the process to change, but i really do hate this particular formatting:
Do you know if there's a way to change this to something like:
Or even just
Having the return type on the same line as _CCCL_HOST_DEVICE that bugs me. |
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.
Spot checked a bunch of places, this LGTM.
@alliepiper could you elaborate? Execution space specifier doesn't look that different from other specifiers. I don't see any of the major formatting styles separate the return type in the code below. [[deprecated]] [[nodiscard]] inline int //
foo() {} In your example, how would you format the following code? _CCCL_HOST_DEVICE [[nodiscard]] inline ReturnType SomeFunctionWithAReallyLongSignature(); In other words, is your concert specifically targeting execution space specifier?
I tried |
No idea, we could add an implicit replacement of the macro with an actual attribute maybe? |
For a concrete example, this appears in this patch:
Personally, if I were manually formatting I'd go with
since I like to have
or, if the function name + returntype exceeds the char limit,
I think this is mostly about the
|
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.
@miscco I've pushed a few fixes, please, take a look before merging.
@alliepiper since the manual formatting you shared is not possible, and alternatives are not unanimous, we'll go forward with the current style. |
No worries, having things formatted consistently is much more important. Hopefully someday we can find a way to pull the return type out of the attribute lists, I do find that annoying but I'll live ;-) |
This applies formatting to all files inside thrust
There is one dependency within
<thrust/memory.h>
That I cannot track down. I have added a Fixme to the strange include I needed to add 🤷