Skip to content

Commit 46b4a20

Browse files
committed
Minor style: convert tabs to spaces
1 parent c06c6b2 commit 46b4a20

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CppCoreGuidelines.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5809,9 +5809,9 @@ Use `virtual` only when declaring a new virtual function. Use `override` only wh
58095809
};
58105810

58115811
struct D : B {
5812-
void f1(int); // warn: D::f1() hides B::f1()
5813-
void f2(int) const; // warn: no explicit override
5814-
void f3(double); // warn: D::f3() hides B::f3()
5812+
void f1(int); // warn: D::f1() hides B::f1()
5813+
void f2(int) const; // warn: no explicit override
5814+
void f3(double); // warn: D::f3() hides B::f3()
58155815
// ...
58165816
};
58175817

0 commit comments

Comments
 (0)