Minor style: convert tabs to spaces

This commit is contained in:
Thibault Kruse 2015-12-03 23:45:01 +01:00
parent c06c6b28de
commit 46b4a20881

View File

@ -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()
// ... // ...
}; };