From 5da59b1fe2d12060c9a40dff7a7c22e2ac96c9bb Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 10 Feb 2007 18:35:31 +0000 Subject: [PATCH] fix a grammar ambiguity noticed by Duncan git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34151 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CodingStandards.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html index 8f210aa5295..fd27985be49 100644 --- a/docs/CodingStandards.html +++ b/docs/CodingStandards.html @@ -456,7 +456,8 @@ most cases, you simply don't need the definition of a class... and not #include'ing speeds up compilation.

It is easy to try to go too overboard on this recommendation, however. You -must include all of the header files that you are using, either directly +must include all of the header files that you are using -- you can +include them either directly or indirectly (through another header file). To make sure that you don't accidently forget to include a header file in your module header, make sure to include your module header first in the implementation file (as mentioned -- 2.11.0