We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There's a zoo of formattable concepts in AUI:
operator<<
fmt::formattable
PrintTo
They are not interchangeable. I want implement formattable/printable concept once per type instead implementing it 3x times per type.
Take fmt::formattable as base formatting concept. As AUI uses both GTest and {fmt}, implement GTest's PrintTo function and use fmt::formattable there.
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the need of your project
There's a zoo of formattable concepts in AUI:
operator<<
(default c++)fmt::formattable
(from {fmt})PrintTo
(from gtest)They are not interchangeable. I want implement formattable/printable concept once per type instead implementing it 3x times per type.
Proposed solution
Take
fmt::formattable
as base formatting concept. As AUI uses both GTest and {fmt}, implement GTest'sPrintTo
function and usefmt::formattable
there.Alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: