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)
commiteead02b1b51770872c50c7c6176210fdab4a78f9
treec5c3368ec0403a9bf3071f06970932f8e2ccc9b0
parent70247a807b3f6fa6f5996fd2184d6276c8e1d881
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 {
};

llvm-svn: 175147
clang/lib/Format/Format.cpp
clang/lib/Format/TokenAnnotator.cpp
clang/lib/Format/TokenAnnotator.h
clang/unittests/Format/FormatTest.cpp