From bcf49aec603ed3b56f98e05f11203fc749016cd8 Mon Sep 17 00:00:00 2001 From: Shang Jiang Date: Sat, 5 Nov 2016 00:39:35 -0400 Subject: [PATCH] fixed the answer for Exercise 7.44 --- ch07/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch07/README.md b/ch07/README.md index ef5b11de..94e1ed1d 100644 --- a/ch07/README.md +++ b/ch07/README.md @@ -344,7 +344,7 @@ private: Exercise 7.44 ------------- -illegal, cause there are ten elements, each would be default initialized. But no default initializer for the temporary object. +illegal, cause there are ten elements, each would be value initialized. But no default constructor for `NoDefault` type. Exercise 7.45 -------------