]> granicus.if.org Git - clang/commitdiff
Fix spacing issues.
authorBill Wendling <isanbard@gmail.com>
Sat, 6 Oct 2007 01:56:01 +0000 (01:56 +0000)
committerBill Wendling <isanbard@gmail.com>
Sat, 6 Oct 2007 01:56:01 +0000 (01:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42676 91177308-0d34-0410-b5e6-96231b3b80d8

docs/InternalsManual.html

index 640fd0bd7c5a25768c091ff5c5771d0934cdb174..b7cf3f199c320b40c34956280ce15938329ccfc3 100644 (file)
@@ -310,13 +310,13 @@ and represent it in the AST perfectly, but the semantics of operations need to
 
 <code>
 void func() {<br>
-  typedef int foo;<br>
-  foo X, *Y;<br>
-  typedef foo* bar;<br>
-  bar Z;<br>
-  *X;   <i>// error</i><br>
-  **Y;  <i>// error</i><br>
-  **Z;  <i>// error</i><br>
+&nbsp;&nbsp;typedef int foo;<br>
+&nbsp;&nbsp;foo X, *Y;<br>
+&nbsp;&nbsp;typedef foo* bar;<br>
+&nbsp;&nbsp;bar Z;<br>
+&nbsp;&nbsp;*X;   <i>// error</i><br>
+&nbsp;&nbsp;**Y;  <i>// error</i><br>
+&nbsp;&nbsp;**Z;  <i>// error</i><br>
 }<br>
 </code>