From: Mike Stump Date: Thu, 5 Nov 2009 03:47:55 +0000 (+0000) Subject: Fix 80-col violation. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=644aa9a59c9c5e84c8cc81b64f933ada681c26af;p=clang Fix 80-col violation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86115 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaCXX/primary-base.cpp b/test/SemaCXX/primary-base.cpp index 62f9087bd9..a7e18bd528 100644 --- a/test/SemaCXX/primary-base.cpp +++ b/test/SemaCXX/primary-base.cpp @@ -4,8 +4,8 @@ class B : virtual A { }; class C : B { }; -// Since A is already a primary base class, C should be the primary base class of F. +// Since A is already a primary base class, C should be the primary base class +// of F. class F : virtual A, virtual C { }; int sa[sizeof(F) == sizeof(A) ? 1 : -1]; -