From 59788a10219b33b82caa9efe7928729d39bccab4 Mon Sep 17 00:00:00 2001 From: hsutter Date: Thu, 2 May 2019 11:33:32 -0700 Subject: [PATCH] Silencing Travis --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 1df9dc6..cb8f01c 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10670,8 +10670,8 @@ For containers, there is a tradition for using `{...}` for a list of elements an vector v1(10); // vector of 10 elements with the default value 0 vector v2{10}; // vector of 1 element with the value 10 - vector v3(1,2); // vector of 1 element with the value 2 - vector v4{1,2}; // vector of 2 element with the values 1 and 2 + vector v3(1, 2); // vector of 1 element with the value 2 + vector v4{1, 2}; // vector of 2 element with the values 1 and 2 ##### Note