diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-10 18:35:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-10 18:35:31 +0000 |
commit | 756f83fdf98d9fed94261635d6d5a02105b4bb94 (patch) | |
tree | bc312b048ab14de5ff6d887d42a1947e5504ce48 /llvm/docs/CodingStandards.html | |
parent | bc7387589879716b4801acb329cfe9e7e8502cd5 (diff) | |
download | bcm5719-llvm-756f83fdf98d9fed94261635d6d5a02105b4bb94.tar.gz bcm5719-llvm-756f83fdf98d9fed94261635d6d5a02105b4bb94.zip |
fix a grammar ambiguity noticed by Duncan
llvm-svn: 34151
Diffstat (limited to 'llvm/docs/CodingStandards.html')
-rw-r--r-- | llvm/docs/CodingStandards.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/docs/CodingStandards.html b/llvm/docs/CodingStandards.html index 8f210aa5295..fd27985be49 100644 --- a/llvm/docs/CodingStandards.html +++ b/llvm/docs/CodingStandards.html @@ -456,7 +456,8 @@ most cases, you simply don't need the definition of a class... and not <tt>#include</tt>'ing speeds up compilation.</p> <p>It is easy to try to go too overboard on this recommendation, however. You -<b>must</b> include all of the header files that you are using, either directly +<b>must</b> 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 <b>first</b> in the implementation file (as mentioned |