You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// CHECK-MESSAGES: :[[@LINE-1]]:25: warning: 2 adjacent parameters of 'numericConversion1' of convertible types are easily swapped by mistake [bugprone-easily-swappable-parameters]
31
31
// CHECK-MESSAGES: :[[@LINE-2]]:29: note: the first parameter in the range is 'I'
32
32
// CHECK-MESSAGES: :[[@LINE-3]]:39: note: the last parameter in the range is 'D'
33
-
// CHECK-MESSAGES: :[[@LINE-4]]:32: note: 'int' and 'double' may be implicitly converted
33
+
// CHECK-MESSAGES: :[[@LINE-4]]:32: note: 'int' and 'double' may be implicitly converted{{$}}
// CHECK-MESSAGES: :[[@LINE-1]]:25: warning: 2 adjacent parameters of 'numericConversion1' of convertible types are easily swapped by mistake [bugprone-easily-swappable-parameters]
75
75
// CHECK-MESSAGES: :[[@LINE-2]]:29: note: the first parameter in the range is 'I'
76
76
// CHECK-MESSAGES: :[[@LINE-3]]:39: note: the last parameter in the range is 'D'
77
-
// CHECK-MESSAGES: :[[@LINE-4]]:32: note: 'int' and 'double' may be implicitly converted
77
+
// CHECK-MESSAGES: :[[@LINE-4]]:32: note: 'int' and 'double' may be implicitly converted{{$}}
78
78
79
79
voidnumericConversion2(int I, short S) { numericConversion2(S, I); }
80
80
// CHECK-MESSAGES: :[[@LINE-1]]:25: warning: 2 adjacent parameters of 'numericConversion2' of convertible types
81
81
// CHECK-MESSAGES: :[[@LINE-2]]:29: note: the first parameter in the range is 'I'
82
82
// CHECK-MESSAGES: :[[@LINE-3]]:38: note: the last parameter in the range is 'S'
83
-
// CHECK-MESSAGES: :[[@LINE-4]]:32: note: 'int' and 'short' may be implicitly converted
83
+
// CHECK-MESSAGES: :[[@LINE-4]]:32: note: 'int' and 'short' may be implicitly converted{{$}}
0 commit comments