From: Timur Iskhodzhanov Date: Fri, 14 Nov 2014 14:16:34 +0000 (+0000) Subject: Replace weird whitespace symbols with good old spaces X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fe83e09a72d83ceb49c81f77324d233d219bf404;p=clang Replace weird whitespace symbols with good old spaces git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@221997 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/VTableBuilder.cpp b/lib/AST/VTableBuilder.cpp index 14a174ede6..4813546138 100644 --- a/lib/AST/VTableBuilder.cpp +++ b/lib/AST/VTableBuilder.cpp @@ -2658,13 +2658,13 @@ static bool BaseInSet(const CXXBaseSpecifier *Specifier, // // Record layouts: // struct A: -//   0 |   (A vftable pointer) +// 0 | (A vftable pointer) // 4 | int x // // struct B: -//   0 |   (B vbtable pointer) -//  4 |   struct A (virtual base) -//  4 |     (A vftable pointer) +// 0 | (B vbtable pointer) +// 4 | struct A (virtual base) +// 4 | (A vftable pointer) // 8 | int x // // Let's assume we have a pointer to the A part of an object of dynamic type B: