From b9f41b5cd072c7d14e4d66a75367928d017ace24 Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Thu, 11 Aug 2016 17:05:03 +0200 Subject: [PATCH] missing template argument --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index aa1f0df..edaa9cb 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4619,7 +4619,7 @@ A class with members that all have default constructors implicitly gets a defaul struct X { string s; - vector v; + vector v; }; X x; // means X{{}, {}}; that is the empty string and the empty vector