From 46b4a208816516abaf03706a5d6c64f5950fd76e Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Thu, 3 Dec 2015 23:45:01 +0100 Subject: [PATCH] Minor style: convert tabs to spaces --- CppCoreGuidelines.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index bc99826..588db7d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5809,9 +5809,9 @@ Use `virtual` only when declaring a new virtual function. Use `override` only wh }; struct D : B { - void f1(int); // warn: D::f1() hides B::f1() - void f2(int) const; // warn: no explicit override - void f3(double); // warn: D::f3() hides B::f3() + void f1(int); // warn: D::f1() hides B::f1() + void f2(int) const; // warn: no explicit override + void f3(double); // warn: D::f3() hides B::f3() // ... };