From b0ea200a06a7fc273206e90c0d6963006fd2d972 Mon Sep 17 00:00:00 2001 From: Andrew Pardoe Date: Sat, 12 Dec 2015 16:32:38 -0800 Subject: [PATCH] Added spaces to distinguish from Liquid output tag --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 201e209..525c2ca 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4069,7 +4069,7 @@ A class with members that all have default constructors implicitly gets a defaul vector v; }; - X x; // means X{{},{}}; that is the empty string and the empty vector + X x; // means X{ {}, {} }; that is the empty string and the empty vector Beware that built-in types are not properly default constructed: