1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

fix a typo

llvm-svn: 230510
This commit is contained in:
Chris Lattner 2015-02-25 17:28:41 +00:00
parent 66d30602b2
commit 21feff6ab2

View File

@ -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