@@ -170,7 +170,7 @@ TEST(FunctionReflectionTest, HasDefaultConstructor) {
170170 int sum(int a, int b){
171171 return a+b;
172172 }
173-
173+
174174 )" ;
175175
176176 GetAllTopLevelDecls (code, Decls);
@@ -277,7 +277,7 @@ TEST(FunctionReflectionTest, GetClassDecls) {
277277
278278 template<class A = int, class B = char>
279279 long get_float_size(int i, A a = A(), B b = B()) {}
280-
280+
281281 template<class A>
282282 void get_char_size(long k, A, char ch = 'a', double l = 0.0) {}
283283
@@ -294,7 +294,7 @@ TEST(FunctionReflectionTest, GetClassDecls) {
294294
295295 GetAllTopLevelDecls (code, Decls);
296296 GetAllSubDecls (Decls[0 ], SubDecls);
297-
297+
298298 std::vector<Cpp::TCppFunction_t> methods;
299299 std::vector<Cpp::TCppFunction_t> template_methods;
300300
@@ -337,7 +337,7 @@ TEST(FunctionReflectionTest, GetFunctionReturnType) {
337337 char get_string(A) {
338338 return 'A';
339339 }
340-
340+
341341 template<class A>
342342 void get_size() {}
343343
@@ -412,7 +412,7 @@ TEST(FunctionReflectionTest, GetFunctionNumArgs) {
412412 char get_string(A, int i) {
413413 return 'A';
414414 }
415-
415+
416416 template<class A>
417417 void get_size() {}
418418
@@ -452,7 +452,7 @@ TEST(FunctionReflectionTest, GetFunctionRequiredArgs) {
452452
453453 template<class A = int, class B = char>
454454 long get_size(int i, A a = A(), B b = B()) {}
455-
455+
456456 template<class A>
457457 void get_size(long k, A, char ch = 'a', double l = 0.0) {}
458458 };
@@ -693,7 +693,7 @@ TEST(FunctionReflectionTest, BestOverloadFunctionMatch1) {
693693 long MyTemplatedMethodClass::get_size(A a, B b) {
694694 return sizeof(A) + sizeof(B);
695695 }
696-
696+
697697 template <int N, class T>
698698 long MyTemplatedMethodClass::get_size(T a) {
699699 return N + sizeof(T) + a;
@@ -818,7 +818,7 @@ TEST(FunctionReflectionTest, BestOverloadFunctionMatch3) {
818818 template<typename T>
819819 struct A {
820820 T value;
821-
821+
822822 template<typename TT>
823823 A<TT> operator-(A<TT> rhs) {
824824 return A<TT>{value - rhs.value};
@@ -1293,12 +1293,12 @@ TEST(FunctionReflectionTest, GetFunctionCallWrapper) {
12931293 FCI_Dtor.Invoke (object);
12941294 output = testing::internal::GetCapturedStdout ();
12951295 EXPECT_EQ (output, " Dtor Called\n " );
1296-
1296+
12971297 std::vector<Decl*> Decls1;
12981298 std::string code1 = R"(
1299- template<typename T>
1299+ template<typename T>
13001300 struct S {
1301-
1301+
13021302 static T Add(T a, T b) { return a + b; }
13031303
13041304 };
@@ -1430,7 +1430,7 @@ TEST(FunctionReflectionTest, GetFunctionArgName) {
14301430
14311431 template<class A = int, class B = char>
14321432 long get_size(int i, A a = A(), B b = B()) {}
1433-
1433+
14341434 template<class A>
14351435 void get_size(long k, A, char ch = 'a', double l = 0.0) {}
14361436 )" ;
@@ -1470,7 +1470,7 @@ TEST(FunctionReflectionTest, GetFunctionArgDefault) {
14701470
14711471 template<class A = int, class B = char>
14721472 long get_size(int i, A a = A(), B b = B()) {}
1473-
1473+
14741474 template<class A>
14751475 void get_size(long k, A, char ch = 'a', double l = 0.0) {}
14761476
0 commit comments