diff options
author | Chris Lattner <sabre@nondot.org> | 2007-12-29 19:56:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-12-29 19:56:08 +0000 |
commit | ebf5666abf3c24e20c8c5883b52492921e073f8b (patch) | |
tree | e12ac8156f2982bc07100a9d4583225827796f0d /llvm/docs/CodingStandards.html | |
parent | 4e6cbb2fe22eac84d3db1a07b713686e9cacd0b5 (diff) | |
download | bcm5719-llvm-ebf5666abf3c24e20c8c5883b52492921e073f8b.tar.gz bcm5719-llvm-ebf5666abf3c24e20c8c5883b52492921e073f8b.zip |
Don't attribute in file headers anymore. See llvmdev for the
discussion of this change.
llvm-svn: 45409
Diffstat (limited to 'llvm/docs/CodingStandards.html')
-rw-r--r-- | llvm/docs/CodingStandards.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/llvm/docs/CodingStandards.html b/llvm/docs/CodingStandards.html index 858bbe1f7b6..3a7f8b3d1e9 100644 --- a/llvm/docs/CodingStandards.html +++ b/llvm/docs/CodingStandards.html @@ -134,8 +134,8 @@ this:</p> // // The LLVM Compiler Infrastructure // -// This file was developed by <whoever started the file> and is distributed under -// the University of Illinois Open Source License. See LICENSE.TXT for details. +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // @@ -146,9 +146,7 @@ this:</p> </pre> </div> -<p>A few things to note about this particular format: The 'developed by' line -should be the name of the person or organization who initially contributed the -file. The "<tt>-*- C++ +<p>A few things to note about this particular format: The "<tt>-*- C++ -*-</tt>" string on the first line is there to tell Emacs that the source file is a C++ file, not a C file (Emacs assumes .h files are C files by default). Note that this tag is not necessary in .cpp files. The name of the file is also @@ -156,9 +154,9 @@ on the first line, along with a very short description of the purpose of the file. This is important when printing out code and flipping though lots of pages.</p> -<p>The next section in the file is a concise note that defines the license that -the file is released under. This makes it perfectly clear what terms the source -code can be distributed under.</p> +<p>The next section in the file is a concise note that defines the license +that the file is released under. This makes it perfectly clear what terms the +source code can be distributed under and should not be modified in any way.</p> <p>The main body of the description does not have to be very long in most cases. Here it's only two lines. If an algorithm is being implemented or something |