From: Bill Wendling Date: Sat, 6 Oct 2007 01:56:01 +0000 (+0000) Subject: Fix spacing issues. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=30d177599ec168d21570abe65e46cc5293582905;p=clang Fix spacing issues. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42676 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/InternalsManual.html b/docs/InternalsManual.html index 640fd0bd7c..b7cf3f199c 100644 --- a/docs/InternalsManual.html +++ b/docs/InternalsManual.html @@ -310,13 +310,13 @@ and represent it in the AST perfectly, but the semantics of operations need to void func() {
- typedef int foo;
- foo X, *Y;
- typedef foo* bar;
- bar Z;
- *X; // error
- **Y; // error
- **Z; // error
+  typedef int foo;
+  foo X, *Y;
+  typedef foo* bar;
+  bar Z;
+  *X; // error
+  **Y; // error
+  **Z; // error
}