r221997 - Replace weird whitespace symbols with good old spaces
Timur Iskhodzhanov
timurrrr at google.com
Fri Nov 14 06:16:35 PST 2014
Author: timurrrr
Date: Fri Nov 14 08:16:34 2014
New Revision: 221997
URL: http://llvm.org/viewvc/llvm-project?rev=221997&view=rev
Log:
Replace weird whitespace symbols with good old spaces
Modified:
cfe/trunk/lib/AST/VTableBuilder.cpp
Modified: cfe/trunk/lib/AST/VTableBuilder.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/VTableBuilder.cpp?rev=221997&r1=221996&r2=221997&view=diff
==============================================================================
--- cfe/trunk/lib/AST/VTableBuilder.cpp (original)
+++ cfe/trunk/lib/AST/VTableBuilder.cpp Fri Nov 14 08:16:34 2014
@@ -2658,13 +2658,13 @@ static bool BaseInSet(const CXXBaseSpeci
//
// 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:
More information about the cfe-commits
mailing list