From 4454339f09a482af6fd07b25d6b06443996dd703 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 25 Feb 2015 17:28:41 +0000 Subject: [PATCH] fix a typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230510 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CodingStandards.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CodingStandards.rst b/docs/CodingStandards.rst index aeaee0d6921..221c431320c 100644 --- a/docs/CodingStandards.rst +++ b/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