mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
Minor style: convert tabs to spaces
This commit is contained in:
parent
c06c6b28de
commit
46b4a20881
|
@ -5809,9 +5809,9 @@ Use `virtual` only when declaring a new virtual function. Use `override` only wh
|
||||||
};
|
};
|
||||||
|
|
||||||
struct D : B {
|
struct D : B {
|
||||||
void f1(int); // warn: D::f1() hides B::f1()
|
void f1(int); // warn: D::f1() hides B::f1()
|
||||||
void f2(int) const; // warn: no explicit override
|
void f2(int) const; // warn: no explicit override
|
||||||
void f3(double); // warn: D::f3() hides B::f3()
|
void f3(double); // warn: D::f3() hides B::f3()
|
||||||
// ...
|
// ...
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user