From 1356a6d0463d90a91f68395bd369750723c62857 Mon Sep 17 00:00:00 2001 From: Andrew Pardoe Date: Sun, 13 Dec 2015 12:04:04 -0800 Subject: [PATCH] Fixed a comment that looks like a Liquid tag --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5795a69..ea6f7da 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4068,7 +4068,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: