We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67cbee1 commit addc5eeCopy full SHA for addc5ee
regression/cpp/Function_Bodies1/main.cpp
@@ -1,6 +1,6 @@
1
template <class T> struct A
2
{
3
- A(T i):i(i){}
+ A(T i):i(i) {}
4
T i;
5
};
6
regression/cpp/List_initialization1/main.cpp
@@ -26,7 +26,7 @@ int main()
26
int y { 1 };
27
x={ 1 };
28
x=int { 1 };
29
- x=(int){ 1 }
+ x=(int) { 1 }
30
p=new int { 1 };
31
some_function({1});
32
}
regression/cpp/Template_Instantiation3/main.cpp
@@ -7,7 +7,7 @@ struct sc_ufixed
7
8
9
10
- sc_ufixed<X*2, Y*2> multiply (const sc_ufixed<X,Y> &op) const
+ sc_ufixed<X*2, Y*2> multiply (const sc_ufixed<X, Y> &op) const
11
12
unsigned int result = this->value * op.value;
13
return sc_ufixed<X*2, Y*2>(result);
0 commit comments