This is an archive of the discontinued LLVM Phabricator instance.

[LLDB] Fix Clang-tidy misc-use-override warnings in some files in include/lldb/Core; other minor fixes.
ClosedPublic

Authored by Eugene.Zelenko on Oct 8 2015, 2:20 PM.

Details

Summary

This is second attempt based on current code.

I checked this patch on my own build on RHEL 6.

Please check it in if it's OK, because I don't have SVN write access.

Diff Detail

Repository
rL LLVM

Event Timeline

Eugene.Zelenko retitled this revision from to [LLDB] Fix Clang-tidy misc-use-override warnings in some files in include/lldb/Core; other minor fixes..
Eugene.Zelenko updated this object.
Eugene.Zelenko added reviewers: brucem, labath, clayborg.
Eugene.Zelenko set the repository for this revision to rL LLVM.
Eugene.Zelenko added a subscriber: lldb-commits.
brucem edited edge metadata.Oct 8 2015, 4:25 PM

I'd like to hear from @clayborg about the whitespace changes here.

I make whitespaces more consistent.

Space between function names and round bracket is consistent with Clang-format settings for LLDB.

clayborg accepted this revision.Oct 9 2015, 10:14 AM
clayborg edited edge metadata.

We are pretty inconsistent with the space after a function name and before the ( so I don't mind.

This revision is now accepted and ready to land.Oct 9 2015, 10:14 AM

There was an lldb-dev thread from February 9, where it seemed to be agreed
that lldb code should be more like llvm code, in particular with the spaces
between the function names and the opening parens. I've been omitting the
spaces in new code since then.

This revision was automatically updated to reflect the committed changes.