You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug #33809262 Run clang-tidy modernize-use-nullptr (again) [noclose]
Another cross-cutting, large-scale clang-tidy fix. It runs the
modernize-use-nullptr fixit over the source code, changing 0 literals
(in pointer context) and NULL to nullptr.
Converting 0 and NULL literals to nullptr makes code easier to read by
increasing self-documentation, makes type and argument order mistakes
more difficult, enable compiler warnings when nonsensical operations
are attempted (such as adding pointers), enable perfect forwarding in
more cases (NULL cannot be perfect forwarded, nullptr can) and reduces
noise from IDEs and other tools that check clang-tidy warnings.
This patch fixes client code only, configured with -DWITHOUT_SERVER=1.
Change-Id: Ife5021a951294ac1d187fe169ffc8996bffdc52d
0 commit comments