https://bugs.llvm.org/show_bug.cgi?id=42417
This revision removes the extra space between the opertor-> and the parens ()
class Bug { auto operator-> () -> int*; auto operator++(int) -> int; };
Differential D68242
[clang-format] [PR42417] clang-format inserts a space after '->' for operator->() overloading MyDeveloperDay on Sep 30 2019, 1:28 PM. Authored by
Details
https://bugs.llvm.org/show_bug.cgi?id=42417 This revision removes the extra space between the opertor-> and the parens () class Bug { auto operator-> () -> int*; auto operator++(int) -> int; };
Diff Detail
|