From b724f71473c4a9961edfee20c274f7cbd2098dd3 Mon Sep 17 00:00:00 2001 From: Werner Henze Date: Wed, 4 Apr 2018 19:53:07 +0200 Subject: [PATCH] Formatting "explicit" as code --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index cc1ccd3..26dc15e 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5379,7 +5379,7 @@ If you really want an implicit conversion from the constructor argument type to ##### Note -Copy and move constructors should not be made explicit because they do not perform conversions. Explicit copy/move constructors make passing and returning by value difficult. +Copy and move constructors should not be made `explicit` because they do not perform conversions. Explicit copy/move constructors make passing and returning by value difficult. ##### Enforcement