Skip to content

Commit addc5ee

Browse files
committed
second pass cpplint fixes in regression/cpp
1 parent 67cbee1 commit addc5ee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

regression/cpp/Function_Bodies1/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
template <class T> struct A
22
{
3-
A(T i):i(i){}
3+
A(T i):i(i) {}
44
T i;
55
};
66

regression/cpp/List_initialization1/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ int main()
2626
int y { 1 };
2727
x={ 1 };
2828
x=int { 1 };
29-
x=(int){ 1 }
29+
x=(int) { 1 }
3030
p=new int { 1 };
3131
some_function({1});
3232
}

regression/cpp/Template_Instantiation3/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ struct sc_ufixed
77
{
88
}
99

10-
sc_ufixed<X*2, Y*2> multiply (const sc_ufixed<X,Y> &op) const
10+
sc_ufixed<X*2, Y*2> multiply (const sc_ufixed<X, Y> &op) const
1111
{
1212
unsigned int result = this->value * op.value;
1313
return sc_ufixed<X*2, Y*2>(result);

0 commit comments

Comments
 (0)