From: Chris Lattner Date: Wed, 25 Feb 2015 17:28:41 +0000 (+0000) Subject: fix a typo X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6cd04ac9637508e996c12c88241cba18d3725cc3;p=platform%2Fupstream%2Fllvm.git fix a typo llvm-svn: 230510 --- diff --git a/llvm/docs/CodingStandards.rst b/llvm/docs/CodingStandards.rst index aeaee0d..221c431 100644 --- a/llvm/docs/CodingStandards.rst +++ b/llvm/docs/CodingStandards.rst @@ -721,7 +721,7 @@ the symbol (e.g., MSVC). This can lead to problems at link time. // 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