From 8b0460d8992bd9ce77f841c8308a0f0681142dab Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 27 Sep 2015 18:55:41 +0200 Subject: [PATCH] remove bad chars --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 1900dae..7b641f4 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -12361,7 +12361,7 @@ Aternatively, we will decide that no change is needed and delete the entry. * Avoid implicit conversions * Const member functions should be thread safe "¦ aka, but I don't really change the variable, just assign it a value the first time its called "¦ argh * Always initialize variables, use initialization lists for member variables. -* Anyone writing a public interface which takes or returns void* should have their toes set on fire.   That one has been a personal favourite of mine for a number of years. :) +* Anyone writing a public interface which takes or returns void* should have their toes set on fire. That one has been a personal favourite of mine for a number of years. :) * Use `const`'ness wherever possible: member functions, variables and (yippee) const_iterators * Use `auto` * `(size)` vs. `{initializers}` vs. `{Extent{size}}`