[llvm] r230510 - fix a typo
Chris Lattner
sabre at nondot.org
Wed Feb 25 09:28:42 PST 2015
Author: lattner
Date: Wed Feb 25 11:28:41 2015
New Revision: 230510
URL: http://llvm.org/viewvc/llvm-project?rev=230510&view=rev
Log:
fix a typo
Modified:
llvm/trunk/docs/CodingStandards.rst
Modified: llvm/trunk/docs/CodingStandards.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodingStandards.rst?rev=230510&r1=230509&r2=230510&view=diff
==============================================================================
--- llvm/trunk/docs/CodingStandards.rst (original)
+++ llvm/trunk/docs/CodingStandards.rst Wed Feb 25 11:28:41 2015
@@ -721,7 +721,7 @@ the symbol (e.g., MSVC). This can lead
// Bar isn't POD, but it does look like a struct.
struct Bar {
int Data;
- Foo() : Data(0) { }
+ Bar() : Data(0) { }
};
Do not use Braced Initializer Lists to Call a Constructor
More information about the llvm-commits
mailing list