]> granicus.if.org Git - clang/commit
Align superclasses for multiple inheritence.
authorDaniel Jasper <djasper@google.com>
Thu, 14 Feb 2013 08:42:54 +0000 (08:42 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 14 Feb 2013 08:42:54 +0000 (08:42 +0000)
commit6cabab48dacc1317821f8f078ed2d4c603b67aff
tree843d403dc69a7904e2403a8dcd487dd940d959b4
parentb9316b3829372c71f2f54d54a9748285f7ffe3fd
Align superclasses for multiple inheritence.

This fixes llvm.org/PR15179.

Before:
class ColorChooserMac : public content::ColorChooser,
    public content::WebContentsObserver {
};

After:
class ColorChooserMac : public content::ColorChooser,
                        public content::WebContentsObserver {
};

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175147 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Format/Format.cpp
lib/Format/TokenAnnotator.cpp
lib/Format/TokenAnnotator.h
unittests/Format/FormatTest.cpp